@spark-hire/bootstrap-themes 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/dark.css +1 -1
- package/css/dark.map +1 -1
- package/css/light.css +1 -1
- package/css/light.map +1 -1
- package/package.json +1 -1
- package/scss/_global_variables.scss +3 -3
- package/scss/buttons.scss +9 -0
package/package.json
CHANGED
|
@@ -101,10 +101,10 @@ $btn-line-height-lg: 1.4;
|
|
|
101
101
|
$btn-disabled-opacity: .45;
|
|
102
102
|
$btn-padding-y-sm: .75;
|
|
103
103
|
|
|
104
|
-
$link-color: #
|
|
104
|
+
$link-color: #6BA3D5;
|
|
105
105
|
$link-decoration: none;
|
|
106
|
-
$link-hover-color: lighten($link-color,
|
|
107
|
-
$link-hover-decoration:
|
|
106
|
+
$link-hover-color: lighten($link-color, 8%);
|
|
107
|
+
$link-hover-decoration: underline;
|
|
108
108
|
|
|
109
109
|
$border-width: 1px;
|
|
110
110
|
|
package/scss/buttons.scss
CHANGED
|
@@ -100,6 +100,11 @@
|
|
|
100
100
|
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $btn-line-height-lg, $btn-border-radius-lg);
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
+
.btn-lg {
|
|
104
|
+
font-size: 1.15rem;
|
|
105
|
+
font-weight: 600;
|
|
106
|
+
}
|
|
107
|
+
|
|
103
108
|
.btn svg {
|
|
104
109
|
vertical-align: text-top;
|
|
105
110
|
}
|
|
@@ -189,6 +194,10 @@ fieldset[disabled] .btn {
|
|
|
189
194
|
color: $white;
|
|
190
195
|
}
|
|
191
196
|
|
|
197
|
+
.btn-link {
|
|
198
|
+
vertical-align: baseline;
|
|
199
|
+
}
|
|
200
|
+
|
|
192
201
|
// ADA compliance
|
|
193
202
|
.btn:focus-visible {
|
|
194
203
|
outline: solid;
|