Created
June 24, 2024 19:32
-
-
Save JonasDoesThings/717f23c727e877f01b7be1ffd9ecd029 to your computer and use it in GitHub Desktop.
fixed version of https://github.com/CreativeBulma/bulma-divider for bulma 1.0+
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "utf-8"; | |
/** | |
* based on https://github.com/CreativeBulma/bulma-divider | |
* made compatible with bulma 1.0+ by replacing the used variables with up-to-date imports | |
*/ | |
@use "node_modules/bulma/sass/utilities"; | |
$divider-background-color: utilities.$border !default; | |
$divider-font-size: utilities.$size-7 !default; | |
$divider-margin-inner-size: 10px !default; | |
$divider-margin-size: 25px !default; | |
.divider { | |
position: relative; | |
display: flex; | |
align-items: center; | |
text-transform: uppercase; | |
color: utilities.$grey; | |
font-size: $divider-font-size; | |
font-weight: utilities.$weight-semibold; | |
letter-spacing: .5px; | |
margin: $divider-margin-size 0; | |
&::after, | |
&::before { | |
content: ''; | |
display: block; | |
flex: 1; | |
height: 1px; | |
background-color: $divider-background-color; | |
} | |
&:not(.is-right) { | |
&::after { | |
margin-left: $divider-margin-inner-size; | |
} | |
} | |
&:not(.is-left) { | |
&::before { | |
margin-right: $divider-margin-inner-size; | |
} | |
} | |
&.is-left { | |
&::before { | |
display: none; | |
} | |
} | |
&.is-right { | |
&::after { | |
display: none; | |
} | |
} | |
&.is-vertical { | |
flex-direction: column; | |
margin: 0 $divider-margin-size; | |
&::after, | |
&::before { | |
height: auto; | |
width: 1px; | |
} | |
&::after { | |
margin-left: 0; | |
margin-top: $divider-margin-inner-size; | |
} | |
&::before { | |
margin-right: 0; | |
margin-bottom: $divider-margin-inner-size; | |
} | |
} | |
@each $name, $pair in utilities.$colors { | |
$color: nth($pair, 1); | |
&.is-#{$name} { | |
&::after, | |
&::before { | |
background-color: $color; | |
} | |
// If light and dark colors are provided | |
@if length($pair) >= 4 { | |
$color-light: nth($pair, 3); | |
&.is-light { | |
&::after, | |
&::before { | |
background-color: $color-light; | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment