Skip to content

Commit

Permalink
fix(css): Fix CSS/@layer try-it: make text-align effect visible (#2519)
Browse files Browse the repository at this point in the history
* unset #html-output width

to make text-align visible

* replace CSS/@layer try-it example

text-align effect is not visible int the actual try-it box, replace with border as per suggestion in #2519
  • Loading branch information
leeyc0 committed May 5, 2023
1 parent dbddc03 commit 56d74a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
background-color: brown;
}
p {
text-align: right;
border: medium solid limegreen;
}
}

@layer module {
.alert {
text-align: left;
border: medium solid violet;
background-color: yellow;
color: white;
}
Expand Down

0 comments on commit 56d74a5

Please sign in to comment.