mirror of
https://github.com/jgthms/bulma
synced 2026-03-20 20:24:30 -07:00
Fix #3926
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1000px) {
|
||||
@media screen and (min-width: 1400px) {
|
||||
.bd-hero.is-docs {
|
||||
flex-wrap: nowrap;
|
||||
|
||||
@@ -47,12 +47,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1200px) {
|
||||
.bd-hero.is-docs {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.bd-hero-title {
|
||||
color: hsl(
|
||||
cv.getVar("text-h"),
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
@use "sass:list";
|
||||
@use "sass/utilities/css-variables" as cv;
|
||||
@use "../utils";
|
||||
|
||||
@@ -128,7 +129,7 @@
|
||||
$bubble-order: ("axbom", "jesseschoff", "ale_codes", "MyTopSecretName");
|
||||
$delay-factor: 0.3s;
|
||||
|
||||
@for $index from 1 through length($bubble-order) {
|
||||
@for $index from 1 through list.length($bubble-order) {
|
||||
$name: list.nth($bubble-order, $index);
|
||||
|
||||
.js-bubble-#{$name} {
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
@use "sass:color";
|
||||
@use "sass/utilities/mixins" as mx;
|
||||
@use "sass/themes/light";
|
||||
|
||||
@@ -72,11 +73,11 @@ $sass: #bf4080;
|
||||
color: light.$scheme-main;
|
||||
|
||||
&:hover {
|
||||
background-color: darken($mauve, 2.5%);
|
||||
background-color: color.adjust($mauve, $lightness: -2.5%);
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: darken($mauve, 5%);
|
||||
background-color: color.adjust($mauve, $lightness: -5%);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -85,11 +86,11 @@ $sass: #bf4080;
|
||||
color: light.$scheme-main;
|
||||
|
||||
&:hover {
|
||||
background-color: darken($pink, 2.5%);
|
||||
background-color: color.adjust($pink, $lightness: -2.5%);
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: darken($pink, 5%);
|
||||
background-color: color.adjust($pink, $lightness: -5%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user