-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: separate menu styles into css file
- Loading branch information
1 parent
e931b31
commit 452f170
Showing
4 changed files
with
47 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* Host styles */ | ||
:host { | ||
@apply contents; | ||
font-family: Tiny5, serif; | ||
} | ||
|
||
/* Fixed backdrop */ | ||
.fixed { | ||
@apply overflow-hidden; | ||
} | ||
|
||
/* Menu button styles */ | ||
.btn-menu { | ||
@apply text-left px-2 py-1 text-gray-100 hover:bg-gray-700/50 transition-colors mb-2 rounded-none; | ||
font-family: Tiny5, serif; | ||
} | ||
|
||
/* Server item styles */ | ||
.server-item { | ||
@apply p-2 bg-gray-700/50 text-gray-200 mb-2; | ||
} | ||
|
||
/* Setting item styles */ | ||
.setting-item { | ||
@apply flex justify-between items-center mb-4 text-gray-200; | ||
font-family: Tiny5, serif; | ||
} | ||
|
||
/* Input styles */ | ||
input[type='text'], select, input[type='color'] { | ||
@apply bg-gray-800 text-white px-2 py-1 rounded; | ||
} | ||
|
||
/* Checkbox styles */ | ||
input[type='checkbox'] { | ||
@apply w-4 h-4 accent-cyan-500; | ||
} |
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