cssOMS/alignment.scss
2022-02-19 13:57:39 +01:00

37 lines
383 B
SCSS
Executable File

.center {
margin: 0 auto;
}
.centerText {
text-align: center;
}
.rightText {
text-align: right;
}
.floatLeft {
float: left;
}
.floatRight {
float: right;
}
.pAlignTable {
display: table;
width: 100%;
}
.vCenterTable {
display: table-cell;
vertical-align: middle;
}
.h-overflow {
overflow-x: auto;
}
.overflowfix {
overflow: auto;
}