-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
100c564
commit 57c8adb
Showing
4 changed files
with
17 additions
and
7 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,3 +1,9 @@ | ||
# v1.0.10 | ||
## 10/10/2022 | ||
|
||
1. [](#improved) | ||
* Improved flex layout | ||
|
||
# v1.0.9 | ||
## 10/10/2022 | ||
|
||
|
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
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,36 +1,41 @@ | ||
div.custom-banner-container { | ||
/* Invisible: fixes banner on page above page content */ | ||
position: fixed; | ||
width: 100%; | ||
z-index: 10000; | ||
} | ||
|
||
div.custom-banner-body { | ||
/* Visible: visible banner background */ | ||
display: flex; | ||
justify-content: space-between; | ||
width: 90%; | ||
max-width: 1000px; | ||
margin: 0 auto; | ||
padding: 1rem 1.5rem; | ||
border-radius: 4px; | ||
overflow-wrap: anywhere; | ||
} | ||
|
||
div.custom-banner-content { | ||
/* Visible: content of banner */ | ||
margin: auto; | ||
font-size: 120%; | ||
overflow-wrap: anywhere; | ||
} | ||
|
||
div.custom-banner-actions { | ||
/* Invisible: buttons container */ | ||
text-align: center; | ||
margin: auto 0; | ||
margin: auto 0 auto 0.5rem; | ||
} | ||
|
||
a.button.custom-banner-button { | ||
/* Style the action button to your liking */ | ||
/* Visible: action button */ | ||
margin: 0.125rem 0 0.25rem 0.125rem; | ||
} | ||
|
||
a.button.custom-banner-dismiss { | ||
/* Style the dismiss button to your liking */ | ||
/* Visible: dismiss button */ | ||
margin: 0 0.125rem 0.125rem 0; | ||
filter: grayscale(1); | ||
} | ||
} |
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