css
This commit is contained in:
parent
94db871b67
commit
ae24a41328
@ -1,14 +1,14 @@
|
|||||||
.app {
|
.app {
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
background-color: var(--background-primary);
|
background-color: var(--background-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: var(--header-height);
|
height: 50px;
|
||||||
background-color: var(--background-tertiary);
|
background-color: var(--background-tertiary);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
.main-content {
|
.main-content {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 91%;
|
height: 100%;
|
||||||
margin: 20px;
|
padding-right: 30px;
|
||||||
background-color: var(--background-secondary);
|
background-color: var(--background-secondary);
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
.sidebar {
|
.sidebar {
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: var(--background-secondary);
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-menu {
|
.sidebar-menu {
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
:root {
|
:root {
|
||||||
--bg-color: #232323;
|
--bg-color: #232323;
|
||||||
--bg-secondary-color: #343434;
|
--bg-secondary-color: #343434;
|
||||||
--color-primary: #00377e;
|
--color-primary: #2760aa;
|
||||||
--color-lightGrey: #d2d6dd;
|
--color-lightGrey: #d2d6dd;
|
||||||
--color-grey: #ccc;
|
--color-grey: #ccc;
|
||||||
--color-darkGrey: #777;
|
--color-darkGrey: #777;
|
||||||
@ -17,8 +17,35 @@
|
|||||||
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
.flex {
|
||||||
/* outline: red dashed 1px; */
|
display: flex;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
/* padding: 0; */
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody tr:hover {
|
||||||
|
background-color: rgba(0, 0, 0, 0.199) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* * {
|
||||||
|
outline: red dashed 1px;
|
||||||
|
} */
|
||||||
|
|
||||||
|
#root {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-full-screen {
|
||||||
|
height: 100%;
|
||||||
|
min-height: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
|
@ -7,7 +7,7 @@ input{
|
|||||||
.logoImg{
|
.logoImg{
|
||||||
max-height: 120px;
|
max-height: 120px;
|
||||||
}
|
}
|
||||||
.row>div{
|
.dingus{
|
||||||
max-width: 407px;
|
max-width: 407px;
|
||||||
}
|
}
|
||||||
.methodsWrapper{
|
.methodsWrapper{
|
||||||
|
11
src/css/pages/Users.css
Normal file
11
src/css/pages/Users.css
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
.user-page {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-list {
|
||||||
|
height: 95%;
|
||||||
|
}
|
||||||
|
|
||||||
|
li input {
|
||||||
|
margin: 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user