summaryrefslogtreecommitdiff
path: root/addons/web/static/src/scss/notification.scss
blob: 561f7ab05520059db0a39f827edf9191f074e82c (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

.o_notification_manager {
    @include o-position-absolute(3.5rem, 0);
    position: fixed;
    z-index: ($zindex-modal + $zindex-popover) / 2;
    width: $toast-max-width;
    margin-right: 8px;
    max-width: 100%;

    .toast:not(:last-child) {
        margin-bottom: 5px;
    }
    .o_notification {
        width: 100%;

        .toast-body {
            padding: 8px 10px;

            .o_notification_close {
                height: 20px;
                margin-left: 1rem;
            }
        }
    }
}