summaryrefslogtreecommitdiffstats
path: root/assets/css/_utils.scss
blob: bf7e213d4139951ff026717a51f6feefcdf4a609 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.u-hidden {
    display: none;

    &\@sm-down {
        @media (max-width: $breakpoint-sm) {
            display: none;
        }
    }

    &\@sm-up {
        @media (min-width: $breakpoint-sm + 1) {
            display: none;
        }
    }
}