Skip to content
Snippets Groups Projects
Commit 0dc3450c authored by Miniontoby's avatar Miniontoby :writing_hand_tone1:
Browse files

Fixed modal backdrop and icon height and month display fixed width

parent 6768ef03
No related branches found
No related tags found
No related merge requests found
...@@ -124,6 +124,7 @@ nav i { ...@@ -124,6 +124,7 @@ nav i {
background-color: var(--background-color) !important; background-color: var(--background-color) !important;
box-shadow: none !important; box-shadow: none !important;
} }
#monthDisplay { width: 200px; }
#newEventModal, #deleteEventModal { #newEventModal, #deleteEventModal {
display: none; display: none;
z-index: 20; z-index: 20;
...@@ -158,9 +159,9 @@ nav i { ...@@ -158,9 +159,9 @@ nav i {
top: 0px; top: 0px;
left: 0px; left: 0px;
z-index: 10; z-index: 10;
width: 100vw; width: 100%;
height: 100vh; height: 100%;
position: absolute; position: fixed;
background-color: rgba(0,0,0,0.8); background-color: rgba(0,0,0,0.8);
} }
.theme-switch { display: inline-block; height: 34px; position: relative; width: 60px; } .theme-switch input { display:none; } [data-theme="hacker"] { /* Please just try to find out how to get it without cheating! */ --text-color: #fff; --background-color: #005c00; --background-day: #142f14; --background-day-hover: #016b03; --background-current-day: #00a813; --background-modal: #4caf50; } .darkmode { display: none !important; } input:checked + .icons .lightmode { display: none !important; } input:checked + .icons .darkmode { display: var(--fa-display,inline-block) !important; } .theme-switch { display: inline-block; height: 26px; position: relative; width: 26px; } .theme-switch input { display:none; } [data-theme="hacker"] { /* Please just try to find out how to get it without cheating! */ --text-color: #fff; --background-color: #005c00; --background-day: #142f14; --background-day-hover: #016b03; --background-current-day: #00a813; --background-modal: #4caf50; } .darkmode { display: none !important; } input:checked + .icons .lightmode { display: none !important; } input:checked + .icons .darkmode { display: var(--fa-display,inline-block) !important; }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment