-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
852547d
commit ed07866
Showing
8 changed files
with
54 additions
and
1,116 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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* These are the remnants of the fomantic dimmer module */ | ||
|
||
.ui.dimmer { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background: var(--color-overlay-backdrop); | ||
opacity: 0; | ||
z-index: 1000; | ||
overflow-y: auto; | ||
justify-content: center; | ||
padding: 8px 0; | ||
} | ||
|
||
.ui.active.dimmer { | ||
display: flex; | ||
opacity: 1; | ||
} | ||
|
||
.ui.dimmer > * { | ||
position: static; | ||
margin: auto !important; | ||
} |
Oops, something went wrong.