File size: 564 Bytes
13555f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import '../styles/z-index';

.confirmation-dialog-box {
    .dialog {
        @include z-index(confirmation-dialog-box);

        > .toolbar {
            position: absolute;
            top: 0;
            right: 0;
        }
    }
}

.box-area {
    display: grid;
    place-items: center;
    padding: 48px 40px;


    .text-heading5 {
        margin: 0 0 8px;
    }

    .sub-text {
        text-align: center;
    }
}

.action-buttons {
    display: flex;
    grid-gap: 12px;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
}