-
Notifications
You must be signed in to change notification settings - Fork 25
/
style.css
65 lines (56 loc) · 1.72 KB
/
style.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@import '@yearn-finance/web-lib/style.css';
#app {
@apply min-h-screen;
}
::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
color: #C5C6C7 !important;
}
/******************************************************************************
** Tailwind Extended
** Set of rules independant of UI styling, to provide robust helpers for
** tailwind CSS
******************************************************************************/
.flex-center {
@apply justify-center items-center
}
.inline-children > * {
@apply inline;
}
.text-start {
text-align: start;
text-align: left;
}
.scrollbar-none::-webkit-scrollbar {
display: none;
}
.scrollbar-none {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.dark .reduce-brightness {
/* Increase saturation to retain lost vibrancy */
filter: brightness(0.9) saturate(1.25);
}
/******************************************************************************
** Buttons & Links
** Set of rules to customize the UI based on the UI template provided
******************************************************************************/
button {@apply cursor-pointer}
button:disabled {@apply cursor-not-allowed}
/* Size of buttons */
.button-small {@apply min-w-33 px-2 py-1 rounded-default text-base text-center transition-colors whitespace-nowrap}
.button-large {@apply min-w-55 px-2 py-2 rounded-default text-base text-center transition-colors whitespace-nowrap}
.link {
@apply no-underline hover:underline transition-colors cursor-pointer text-sm
}
h1.title {
@apply text-2xl font-bold text-neutral-900;
}
.next-error-h1 {
@apply !text-2xl !font-bold text-neutral-900 !border-r-neutral-900;
}
.next-error-h1 ~ div > h2 {
@apply font-bold text-neutral-900;
}