Skip to content

Commit

Permalink
Refactor text alignment properties to use 'start' and 'end' for bette…
Browse files Browse the repository at this point in the history
…r consistency
  • Loading branch information
hichemfantar committed Jan 14, 2025
1 parent 95cc0ef commit d589766
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions website/src/css/customTheme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -318,14 +318,14 @@ hr {
text-transform: uppercase;
padding: 6px 10px;
font-size: 0.7rem;
text-align: left;
text-align: start;
}

tr td {
font-size: 90%;
line-height: 1.3em;
padding: 10px;
text-align: left;
text-align: start;

code {
display: inline-block;
Expand Down Expand Up @@ -1184,7 +1184,7 @@ button[class*="tocCollapsibleButton"] {

.lastUpdated {
font-size: 13px;
text-align: right;
text-align: end;
}

time,
Expand Down
4 changes: 2 additions & 2 deletions website/src/css/showcase.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ html[data-theme="dark"] {
h2 {
margin: 4px -20px 12px;
padding: 0 40px 0;
text-align: left;
text-align: start;

img {
margin: 16px 0 8px;
Expand All @@ -80,7 +80,7 @@ html[data-theme="dark"] {
}

.showcaseSectionDescription {
text-align: left;
text-align: start;
color: var(--subtle);
padding: 0 20px;
margin-bottom: 8px;
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/Home/Framework/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

.card {
flex-direction: row;
text-align: left;
text-align: start;
}

.cardImage {
Expand Down
2 changes: 1 addition & 1 deletion website/src/theme/DocItem/Footer/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

@media (min-width: 997px) {
.lastUpdated {
text-align: right;
text-align: end;
}
}

0 comments on commit d589766

Please sign in to comment.