-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#46] ThemeSwitch를 Floating Button으로 변경
- Loading branch information
1 parent
8482838
commit 97e87eb
Showing
4 changed files
with
35 additions
and
15 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 |
---|---|---|
@@ -1,9 +1,25 @@ | ||
@use '../../styles/mixins'as *; | ||
|
||
.dark-mode-switch { | ||
margin-left: 3px; | ||
.dark-mode-button-wrapper { | ||
position: fixed; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
bottom: 20px; | ||
right: 20px; | ||
} | ||
|
||
@include md { | ||
margin-left: 13px; | ||
} | ||
.dark-mode-button { | ||
width: 50px; | ||
height: 50px; | ||
border-radius: 50px; | ||
background-color: #363f47 !important; | ||
cursor: pointer; | ||
box-shadow: 0px 5px 25px rgb(0 0 0 / 12%); | ||
backdrop-filter: blur(30px); | ||
z-index: 3; | ||
} | ||
|
||
.dark-mode-icon { | ||
color: white; | ||
} |
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