aboutsummaryrefslogtreecommitdiffstats
path: root/src/style/scss/themes/1802/tabs.scss
blob: 70ee4cbf7ddeaaa1dc7397374ae8ca24f58a4d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.sdc-tabs {
    .sdc-tab {
        background-color: $white;
        border: 1px solid $silver;
        border-left: none;
        display: inline-block;
        height: 36px;
        text-align: center;
        cursor: pointer;
        padding: 2px 10px 0 10px;
        margin: 0;


        &:first-child {
            border-left: 1px solid $silver;
        }
        &.sdc-tab-active {
            background-color: $silver;
        }
        &[disabled] {
            opacity: 0.3;
            cursor: default;
        }
    }
    &.sdc-tabs-header {
        .sdc-tab {
            @include heading-2;
        }
    }
    &.sdc-tabs-menu {
        .sdc-tab {
            @include body-1;
            padding: 0px 10px 4px 10px;
        }
    }
    .sdc-tab-content {
        margin-top: 30px;
    }
}