Skip to content
Snippets Groups Projects
Unverified Commit ec9b3fb8 authored by Sébastien Gaya's avatar Sébastien Gaya Committed by GitHub
Browse files

Merge pull request #1005 from noesya/fix-sass

Fix Sass CSS variable (mixin)
parents f0221f84 147d3ef6
No related branches found
No related tags found
No related merge requests found
@import 'pure/utils'
@import 'pure/fonts'
@import 'pure/variables'
@import 'pure/mixins'
@import 'pure/grid'
@import 'bootstrap'
@import 'bootstrap-icons/font/bootstrap-icons'
......
*
--bs-gutter-x: 64px !important
@include root-prop(--bs-gutter-x, 64px !important)
@media (max-width: 768px)
--bs-gutter-x: 32px !important
@include root-prop(--bs-gutter-x, 32px !important)
\ No newline at end of file
@mixin root-prop($prop: null, $value: null)
@if ($prop and $value)
#{$prop}: $value
\ No newline at end of file
.container
@include media-breakpoint-up(md)
padding-right: var(--bs-gutter-x)
padding-left: var(--bs-gutter-x)
padding-right: var(--bs-gutter-x)
.action-show
dl
......@@ -11,11 +11,11 @@
dd
margin-bottom: px2rem(26)
a
transition: text-decoration 0.5s
text-decoration: underline
text-decoration-color: adjust-color(black, $alpha: -0.8)
text-decoration-thickness: 1px
text-underline-offset: 4px
text-decoration-color: adjust-color(black, $alpha: -0.8)
transition: text-decoration 0.5s
&:hover
text-decoration-color: black
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment