Skip to content
Snippets Groups Projects
Commit 92e68708 authored by Steinwender, Tamara's avatar Steinwender, Tamara Committed by Reiter, Christoph
Browse files

Added common text Utilities

parent cd96389b
No related branches found
No related tags found
No related merge requests found
Pipeline #12229 passed
......@@ -867,3 +867,36 @@ export function getModalDialogCSS() {
}
`;
}
export function getTextUtilities() {
// language=css
return css`
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-lowercase {
text-transform: lowercase;
}
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
`;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment