blob: bf02a7cfcdbabfab0d328e0b5a825417591c0c29 (
plain)
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
|
.ui-button {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-size: 0.9rem;
font-weight: 500;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.1s ease;
border: none;
}
.ui-button:active {
transform: translateY(1px);
}
.ui-button--primary {
background: var(--button-background-color);
color: white;
}
.ui-button--primary:hover {
background: var(--button-hover-background-color);
}
.ui-button--secondary {
background: var(--border-color);
color: var(--text-color);
}
.ui-button--secondary:hover {
background: #e0e0e0;
}
.ui-button__icon {
display: flex;
align-items: center;
}
|