blob: ccf7a97abdd1bc651f2961ad2fd6ff52deafce20 (
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
|
.change-avatar-cropper-row {
max-height: 400px;
}
.change-avatar-img {
min-width: 50%;
max-width: 100%;
max-height: 400px;
}
.settings-item {
padding: 0.5em 1em;
transition: background 0.3s;
border-bottom: 1px solid #e9ecef;
align-items: center;
}
.settings-item.first {
border-top: 1px solid #e9ecef;
}
.settings-item.clickable {
cursor: pointer;
}
.settings-item:hover {
background: #dee2e6;
}
.register-code {
border: 1px solid black;
border-radius: 3px;
padding: 0.2em;
}
|