blob: 7833c485fe42029f7d1c5189a622d19245d98d0c (
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
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
|
@import "../views/globalCssVariables";
.editing-interface {
background-color: whitesmoke !important;
color: grey;
width: 100%;
height: 100%;
button {
background: $darker-alt-accent;
outline: none;
border-radius: 5px;
border: 0px;
color: #fcfbf7;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 75%;
padding: 10px;
margin: 10px;
transition: transform 0.2s;
margin: 2px;
}
.memberView-closeButton {
position: absolute;
right: 1em;
top: 1em;
cursor: pointer;
z-index: 1000;
}
.editing-header {
margin-bottom: 5;
.group-buttons {
display: flex;
margin-top: 5;
.add-member-dropdown {
width: 100%;
margin: 0 5;
}
}
}
.editing-contents {
overflow-y: auto;
// max-height: 67%;
height: 67%;
width: 100%;
.editing-row {
display: flex;
align-items: center;
// border: 1px solid;
// border-radius: 10px;
.user-email {
// position: relative;
min-width: 65%;
word-break: break-all;
padding: 0 5;
}
}
}
}
|