-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turn global css file into normal css file (not module)
- Loading branch information
1 parent
40affd2
commit 7e75ad0
Showing
2 changed files
with
6 additions
and
6 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,27 +1,27 @@ | ||
:global body { | ||
body { | ||
margin: 0; | ||
background-color: #ecf0f1; | ||
font-family: "Open Sans", sans-serif; | ||
} | ||
|
||
:global img { | ||
img { | ||
display: block; | ||
max-width: 100%; | ||
} | ||
|
||
:global canvas { | ||
canvas { | ||
width: 100% !important; | ||
height: auto !important; | ||
max-height: 370px; | ||
margin: 20px 0; | ||
} | ||
|
||
:global a { | ||
a { | ||
color: #2980b9; | ||
text-decoration: none; | ||
} | ||
|
||
:global a:hover { | ||
a:hover { | ||
color: #3498db; | ||
text-decoration: underline; | ||
} |
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