Skip to content
Snippets Groups Projects
Unverified Commit 3788d3f8 authored by Sébastien Gaya's avatar Sébastien Gaya
Browse files

use mixin for variables

parent 67ee6838
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)
@mixin root-prop($prop: null, $value: null)
@if ($prop and $value)
#{$prop}: $value
.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