This commit is contained in:
Erik 2022-11-23 00:38:56 +02:00
parent 94db871b67
commit ae24a41328
Signed by untrusted user: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB
5 changed files with 48 additions and 10 deletions

View File

@ -1,14 +1,14 @@
.app {
width: 100vw;
height: 100vh;
background-color: var(--background-primary);
}
header {
position: absolute;
right: 0;
display: flex;
flex-direction: row;
text-align: center;
height: var(--header-height);
height: 50px;
background-color: var(--background-tertiary);
}
@ -20,7 +20,7 @@
.main-content {
width: 100%;
height: 91%;
margin: 20px;
height: 100%;
padding-right: 30px;
background-color: var(--background-secondary);
}

View File

@ -1,7 +1,7 @@
.sidebar {
min-width: 200px;
height: 100%;
background-color: var(--background-secondary);
margin-right: 10px;
}
.sidebar-menu {

View File

@ -3,7 +3,7 @@
:root {
--bg-color: #232323;
--bg-secondary-color: #343434;
--color-primary: #00377e;
--color-primary: #2760aa;
--color-lightGrey: #d2d6dd;
--color-grey: #ccc;
--color-darkGrey: #777;
@ -17,8 +17,35 @@
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}
* {
/* outline: red dashed 1px; */
.flex {
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 {

View File

@ -7,7 +7,7 @@ input{
.logoImg{
max-height: 120px;
}
.row>div{
.dingus{
max-width: 407px;
}
.methodsWrapper{

11
src/css/pages/Users.css Normal file
View File

@ -0,0 +1,11 @@
.user-page {
height: 100%;
}
.user-list {
height: 95%;
}
li input {
margin: 0;
}