mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-10 18:58:40 +00:00
41 lines
421 B
SCSS
Executable File
41 lines
421 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;
|
|
}
|
|
|
|
.nowrap {
|
|
white-space: nowrap;
|
|
} |