mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-22 18:36:30 +00:00
3f74371333
* Upgrade bulma to 0.7.5 * Upgrade bulma to 0.8.2 * Upgrade bulma to 0.9.2 * Reduce features * Remove ';' from sass
79 lines
1.5 KiB
Sass
79 lines
1.5 KiB
Sass
@import "../utilities/mixins"
|
|
|
|
$level-item-spacing: ($block-spacing / 2) !default
|
|
|
|
.level
|
|
@extend %block
|
|
align-items: center
|
|
justify-content: space-between
|
|
code
|
|
border-radius: $radius
|
|
img
|
|
display: inline-block
|
|
vertical-align: top
|
|
// Modifiers
|
|
&.is-mobile
|
|
display: flex
|
|
.level-left,
|
|
.level-right
|
|
display: flex
|
|
.level-left + .level-right
|
|
margin-top: 0
|
|
.level-item
|
|
&:not(:last-child)
|
|
margin-bottom: 0
|
|
+ltr-property("margin", $level-item-spacing)
|
|
&:not(.is-narrow)
|
|
flex-grow: 1
|
|
// Responsiveness
|
|
+tablet
|
|
display: flex
|
|
& > .level-item
|
|
&:not(.is-narrow)
|
|
flex-grow: 1
|
|
|
|
.level-item
|
|
align-items: center
|
|
display: flex
|
|
flex-basis: auto
|
|
flex-grow: 0
|
|
flex-shrink: 0
|
|
justify-content: center
|
|
.title,
|
|
.subtitle
|
|
margin-bottom: 0
|
|
// Responsiveness
|
|
+mobile
|
|
&:not(:last-child)
|
|
margin-bottom: $level-item-spacing
|
|
|
|
.level-left,
|
|
.level-right
|
|
flex-basis: auto
|
|
flex-grow: 0
|
|
flex-shrink: 0
|
|
.level-item
|
|
// Modifiers
|
|
&.is-flexible
|
|
flex-grow: 1
|
|
// Responsiveness
|
|
+tablet
|
|
&:not(:last-child)
|
|
+ltr-property("margin", $level-item-spacing)
|
|
|
|
.level-left
|
|
align-items: center
|
|
justify-content: flex-start
|
|
// Responsiveness
|
|
+mobile
|
|
& + .level-right
|
|
margin-top: 1.5rem
|
|
+tablet
|
|
display: flex
|
|
|
|
.level-right
|
|
align-items: center
|
|
justify-content: flex-end
|
|
// Responsiveness
|
|
+tablet
|
|
display: flex
|