aboutsummaryrefslogtreecommitdiff
path: root/themes/docsy/assets/scss/_pageinfo.scss
blob: 1144db9de9904b98389c04e889ceff4f0e93ae1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.pageinfo {
    font-weight: $font-weight-medium;
    background: $gray-100;
    color: inherit;
    border-radius: 0;
    margin: 2rem;
    padding: 1.5rem;
    padding-bottom: 0.5rem;

    @each $color, $value in $theme-colors {
        &-#{$color} {

            border-style: solid;
            border-color: $value;
        }
    }
   
}