-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(css): update order demo * box -> Box * one more
- Loading branch information
1 parent
0a84927
commit be57d9c
Showing
2 changed files
with
22 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
.default-example { | ||
max-height: 300px; | ||
display: flex; | ||
flex-flow: column; | ||
} | ||
|
||
.default-example > div { | ||
background-color: rgba(0, 0, 255, 0.2); | ||
border: 3px solid blue; | ||
margin: 10px; | ||
margin: 0.5rem; | ||
padding: 0.5rem; | ||
flex: 1; | ||
} | ||
|
||
#example-element { | ||
background-color: rgba(255, 0, 200, 0.2); | ||
border: 3px solid rebeccapurple; | ||
} | ||
|
||
#example-element::after { | ||
content: attr(style); | ||
background: #444; | ||
font-family: monospace; | ||
} | ||
|
||
code { | ||
background: #444; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters