summaryrefslogtreecommitdiff
path: root/addons/mail/static/src/components/follow_button/follow_button.scss
blob: 36fb60e788aeead3f4e1c3db1514edeb9da21e40 (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
// ------------------------------------------------------------------
// Layout
// ------------------------------------------------------------------

.o_FollowButton {
    display: flex;
}

// ------------------------------------------------------------------
// Style
// ------------------------------------------------------------------

.o_FollowButton_follow {
    color: gray('600');
}

.o_FollowButton_unfollow {
    color: gray('600');

    &.o-following {
        color: $green;
    }

    &.o-unfollow {
        color: $orange;
    }
}