blob: 9629585d7bb7e1187d78e16d7fbbb67139c84fd7 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
@import "../globalCssVariables";
.edit-container {
width: 100%;
height: auto;
display: flex;
flex-direction: column;
}
.name-input {
margin-bottom: 10px;
padding: 5px;
font-size: 12px;
border: 1px solid #bababa;
}
.description-input {
font-size: 11px;
padding: 5px;
margin-bottom: 10px;
border: 1px solid #bababa;
}
.save-button {
width: 50px;
height: 22px;
pointer-events: auto;
background-color: $dark-color;
color: $light-color;
text-transform: uppercase;
letter-spacing: 2px;
padding: 2px;
font-size: 10px;
margin: 0 auto;
transition: transform 0.2s;
text-align: center;
line-height: 20px;
}
.save-button:hover {
background: $main-accent;
cursor: pointer;
}
|