aboutsummaryrefslogtreecommitdiffstats
path: root/packages/excalidraw/components/OverwriteConfirm/OverwriteConfirm.scss
blob: 4aad0cbdfd4edfdb722bc558bd1eae2fe294f0cc (plain) (blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import "../../css/variables.module.scss";

.excalidraw {
  .OverwriteConfirm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    isolation: isolate;

    h3 {
      margin: 0;

      font-weight: 700;
      font-size: 1.3125rem;
      line-height: 130%;
      align-self: flex-start;

      color: var(--text-primary-color);
    }

    &__Description {
      box-sizing: border-box;

      display: flex;
      flex-direction: row;
      align-items: center;
      width: 100%;
      gap: 1rem;

      @include isMobile {
        flex-direction: column;
        text-align: center;
      }

      padding: 2.5rem;

      background: var(--color-danger-background);
      border-radius: 0.5rem;

      font-family: "Assistant";
      font-style: normal;
      font-weight: 400;
      font-size: 1rem;
      line-height: 150%;

      color: var(--color-danger-color);

      &__spacer {
        flex-grow: 1;
      }

      &__icon {
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 2.5rem;
        background: var(--color-danger-icon-background);
        width: 3.5rem;
        height: 3.5rem;

        padding: 0.75rem;

        svg {
          color: var(--color-danger-icon-color);
          width: 1.5rem;
          height: 1.5rem;
        }
      }

      &.OverwriteConfirm__Description--color-warning {
        background: var(--color-warning-background);
        color: var(--color-warning-color);

        .OverwriteConfirm__Description__icon {
          background: var(--color-warning-icon-background);
          flex: 0 0 auto;

          svg {
            color: var(--color-warning-icon-color);
          }
        }
      }
    }

    &__Actions {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      justify-items: stretch;
      justify-content: center;
      gap: 1.5rem;

      @include isMobile {
        flex-direction: column;
      }

      &__Action {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        gap: 0.75rem;
        flex-basis: 50%;
        flex-grow: 0;

        &__content {
          height: 100%;
          font-size: 0.875rem;
          text-align: center;
        }

        h4 {
          font-weight: 700;
          font-size: 1.125rem;
          line-height: 130%;

          margin: 0;

          color: var(--text-primary-color);
        }
      }
    }
  }
}