File size: 1,549 Bytes
74aacd5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@use '../../styles/Mixins/' as *;

.side-panel {
  position: absolute;
  top: 68px;
  right: 1.5rem;
  padding: 0.1rem 0.3rem;
  z-index: 4;

  border-radius: 0.8rem;
  border-style: solid;
  border-color: var(--border-color);
  border-width: 1px;
}

.side-panel-trigger {
  font-family: 'WorkSans', sans-serif;
  font-size: 16px;
  border: 0px;
}

.side-panel-content {
  outline: none;
  position: relative;
  font-family: 'WorkSans', sans-serif;
  font-size: 14px;
  top: 8px;
  right: 1.5rem;
  padding: 1rem 1rem;
  z-index: 9;

  // backdrop-filter: blur(12px);
  color: var(--text-color);
  background-color: var(--page-bg);

  border-radius: 0.8rem;
  border-style: solid;
  border-color: var(--border-color);
  border-width: 1px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  .setting-block-content {
    gap: 1rem;
  }

  // input {
  //   height: 24px;
  //   // border-radius: 4px;
  // }

  // button {
  //   height: 28px;
  //   // border-radius: 4px;
  // }
}

.negative-prompt {
  all: unset;
  border-width: 0;
  border-radius: 0.5rem;
  min-height: 150px;
  max-width: 200px;
  width: 100%;
  padding: 12px 0.8rem;
  outline: 1px solid var(--border-color);

  &:focus-visible {
    border-width: 0;
    outline: 1px solid var(--yellow-accent);
  }

  &:-webkit-input-placeholder {
    padding-top: 10px;
  }

  &:-moz-input-placeholder {
    padding-top: 10px;
  }

  &:-ms-input-placeholder {
    padding-top: 10px;
  }
}

.resize-title-tile {
  width: 86px;
  font-size: 0.5rem;
  color: var(--text-color-gray);
}