blob: cb191dc8c0d847c64e88b815b2b52fea36b86912 (
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
|
.edit-container {
width: 100%;
height: auto;
display: flex;
flex-direction: column;
}
.name-input {
margin-bottom: 10px;
padding: 5px;
font-size: 12px;
}
.description-input {
font-size: 12px;
padding: 5px;
margin-bottom: 10px;
}
.save-button {
width: 50px;
height: 20px;
background-color: #2B6091;
margin: 0 auto;
color: white;
text-align: center;
line-height: 20px;
font-size: 12px;
}
|