-
Notifications
You must be signed in to change notification settings - Fork 71
/
theme.css
27 lines (26 loc) · 1.07 KB
/
theme.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.ease-transition {
@apply transition duration-200 ease-in-out;
}
.sidebar-action-btn {
@apply inline-flex items-center px-3 py-2 border text-xs font-medium rounded-full focus:outline-none;
}
.border-btn-island {
@apply bg-white border-island-300 text-island-600 hover:bg-island-600 hover:text-white hover:border-transparent;
}
.border-btn-azure {
@apply bg-white border-azure-300 text-azure-600 hover:bg-azure-600 hover:text-white hover:border-transparent;
}
.border-btn-chillindigo {
@apply bg-white border-chillindigo-300 text-chillindigo-600 hover:bg-chillindigo-600 hover:text-white hover:border-transparent;
}
.border-btn-chillcerise {
@apply bg-white border-chillcerise-300 text-chillcerise-600 hover:bg-chillcerise-600 hover:text-white hover:border-transparent;
}
.border-btn-gray {
@apply bg-white border-gray-300 text-gray-600 hover:bg-gray-600 hover:text-white hover:border-transparent;
}
}