Skip to content

Commit

Permalink
IMPROVED: Utility: Texts: Added text-transform-* & text-align-* class…
Browse files Browse the repository at this point in the history
…es to transform & align elements easily.
  • Loading branch information
SagnikGanguly96 committed Feb 14, 2023
1 parent 99d7b9f commit a18acb3
Showing 1 changed file with 73 additions and 2 deletions.
75 changes: 73 additions & 2 deletions src/css/utilities/texts.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2022 SGNetworks. All rights reserved.
* Copyright (c) 2022-2023 SGNetworks. All rights reserved.
*
* The software is an exclusive copyright of "SGNetworks" and is provided as is exclusively with only "USAGE" access. "Modification", "Alteration", "Re-distribution" is completely prohibited.
* VIOLATING THE ABOVE TERMS IS A PUNISHABLE OFFENSE WHICH MAY LEAD TO LEGAL CONSEQUENCES.
Expand All @@ -12,4 +12,75 @@
.sgn-placeholder-container > .sgn-placeholder-text {
font-size: 4rem;
line-height: 1;
}
}

.text-uppercase {
text-transform: uppercase !important;
}

.text-lowercase {
text-transform: lowercase !important;
}

.text-capitalize {
text-transform: capitalize !important;
}

.text-transform-none {
text-transform: none !important;
}


.text-align-left {
text-align: left !important;
}

.text-align-center {
text-align: center !important;
}

.text-align-right {
text-align: right !important;
}

.text-align-start {
text-align: start !important;
}

.text-align-end {
text-align: end !important;
}

.text-align-justify {
text-align: justify !important;
}

.text-align-justify-all {
text-align: justify-all !important;
}

.text-align-match-parent {
text-align: match-parent !important;
}

.text-align-inherit {
text-align: inherit !important;
}

.text-align-initial {
text-align: initial !important;
}

.text-align-revert {
text-align: revert !important;
}

.text-align-unset {
text-align: unset !important;
}


.gradient-text {
-webkit-text-fill-color: transparent;
background-clip: text;
}

0 comments on commit a18acb3

Please sign in to comment.