aboutsummaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/application/_flash.scss
blob: 37d27b21aeee8ba2c0ec199f2db465a8828752c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
  FLASH
*/

#flash {
    position: absolute;
    bottom: 2rem;
    margin: 0 auto;
    width: 50%;
    min-width: 24rem;
    max-width: 64rem;
    max-height: 10rem;
    overflow: scroll;
    padding: 1rem;

    &.alert {
        background-color: var(--danger-medium);
    }
    &.notice {
        background-color: var(--highlight-low);
    }
}