-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_buttons.scss
More file actions
112 lines (94 loc) · 1.79 KB
/
_buttons.scss
File metadata and controls
112 lines (94 loc) · 1.79 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[class*='btn-outline-'] {
border-width: 3px;
}
.btn {
font-family: $font-family-sans-serif;
font-weight: $font-weight-normal !important;
i {
font-size: 0.8rem;
margin-left: 0.5rem;
}
}
.btn-chat {
position: fixed;
width: auto;
font-size: 1.2rem;
bottom: 1rem;
right: 1rem;
}
.btn-nav {
display: block;
color: #000;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
margin: 0;
position: relative;
&:focus {
box-shadow: none;
}
i {
margin-left: 0.5rem;
font-size: $font-size-sm;
}
}
.btn-sm {
font-size: 14px !important;
}
@media (max-width: 768px) {
.btn-nav {
margin: auto;
color: black !important;
}
.header-menu--right .btn-primary {
margin-top: 1rem;
}
}
.btn-remove {
height: 31px;
width: 31px;
background-color: transparent;
color: $gray-400;
border: 1px solid $gray-400;
&:hover,
&:focus,
&:focus:hover {
background-color: transparent;
color: $danger;
border-color: $danger;
}
i {
margin: 0;
}
}
.btn-tab {
flex: 1;
color: white;
background-color: $primary;
margin: 0 1rem;
background-size: contain;
img {
height: 20px;
}
@media (min-width: map-get($grid-breakpoints, 'md')) {
padding: 1.5rem 2rem;
img {
margin-bottom: 0.5rem;
height: 30px;
}
}
&:not(.router-link-exact-active) {
background-image: none !important;
background-color: white;
color: $primary;
}
&.router-link-exact-active:hover {
color: white;
}
&:first-of-type {
margin-left: 0;
}
&:last-of-type {
margin-right: 0;
}
}