dominicana-indotel-ui
Version:
AtomOS - A modular and efficient design system based on Atomic Design principles
51 lines • 792 B
CSS
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}
.text-start {
text-align: start;
}
.text-end {
text-align: end;
}
.text-underline {
text-decoration: underline;
}
.text-no-underline {
text-decoration: none;
}
.text-uppercase {
text-transform: uppercase;
}
.text-lowercase {
text-transform: lowercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-spacing-wide {
letter-spacing: 0.1em;
}
.text-spacing-tight {
letter-spacing: -0.05em;
}
.text-spacing-normal {
letter-spacing: normal;
}
.text-lineheight-normal {
line-height: 1.6;
}
.text-lineheight-tight {
line-height: 1.2;
}
.text-lineheight-loose {
line-height: 2;
}