Files
frontend-tutorial-framework/src/assets/scss/_grid.scss
2019-08-12 16:51:51 +02:00

45 lines
634 B
SCSS

.tao-grid-center-center {
justify-self: center;
align-self: center;
}
.tao-grid-center-right {
justify-self: right;
align-self: center;
}
.tao-grid-center-left {
justify-self: left;
align-self: center;
}
.tao-grid-start-center {
justify-self: center;
align-self: start;
}
.tao-grid-end-center {
justify-self: center;
align-self: end;
}
.tao-grid-top-right {
justify-self: right;
align-self: start;
}
.tao-grid-top-left {
justify-self: left;
align-self: start;
}
.tao-grid-bottom-left {
justify-self: left;
align-self: end;
}
.tao-grid-bottom-right {
justify-self: right;
align-self: end;
}