-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathViewTeams.module.scss
82 lines (79 loc) · 1.38 KB
/
ViewTeams.module.scss
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
@import './variables.scss';
@import './mixins.scss';
.dialog {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.newTeamButton {
padding: 1em 5em !important;
font-size: large !important;
@include down($breakpoint-lg) {
padding: 0.5em 1em !important;
font-size: medium !important;
}
}
.tableHeader {
width: 100%;
display: flex;
justify-content: space-between;
padding-top: 35px;
}
.tableBody {
display: grid;
}
.tableData {
table-layout: fixed;
width: 100%;
text-align: left;
border-collapse: separate;
border-spacing: 0 33px;
}
.tableEntry {
display: block;
width: 100%;
}
.tableHeaderText {
font-weight: 400;
background-color: $gradient-color-start;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 28px;
@include down($breakpoint-sm) {
font-size: 20px;
}
}
.link {
background: none;
border: none;
text-decoration: underline;
cursor: pointer;
}
.buttonForm {
width: fit-content;
margin: 0 auto;
display: inline-flex;
justify-content: center;
}
.statusMessageContainer {
display: flex;
justify-content: center;
}
.spinnerContainer {
display: flex;
justify-content: center;
}
.noTeamsText {
font-weight: 600;
color: $color-primary;
font-size: 25px;
text-align: center;
@include down($breakpoint-sm) {
font-size: 20px;
width: 80%;
padding-bottom: 20px;
}
}