Remove whitespace (#553)

This commit is contained in:
Philipp Horstenkamp 2024-01-10 23:41:22 +01:00 committed by GitHub
commit adc439d8f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 18 additions and 6 deletions

View File

@ -3,6 +3,7 @@
background-color: var(--paynes-gray); background-color: var(--paynes-gray);
border: 1px solid; border: 1px solid;
width: 100%; width: 100%;
box-sizing: border-box;
} }
.selection-header .selection-header-title { .selection-header .selection-header-title {

View File

@ -12,6 +12,7 @@
background-color: var(--raisin-black); background-color: var(--raisin-black);
border: 1px solid; border: 1px solid;
width: 100%; width: 100%;
box-sizing: border-box;
overflow: visible; overflow: visible;
min-height: 77px; min-height: 77px;
} }

View File

@ -1,7 +1,7 @@
.home { .home {
float: left; float: left;
width: 100vw;
height: 100vh; height: 100vh;
width: 100%;
background-color: var(--ash-gray); background-color: var(--ash-gray);
} }
@ -13,6 +13,7 @@
margin-left: 2%; margin-left: 2%;
margin-right: 1%; margin-right: 1%;
border: 1px solid; border: 1px solid;
box-sizing: border-box;
border-color: var(--raisin-black); border-color: var(--raisin-black);
border-radius: 20px; border-radius: 20px;
width: 32%; width: 32%;
@ -53,6 +54,7 @@
margin-left: 1%; margin-left: 1%;
margin-right: 2%; margin-right: 2%;
border: 1px solid; border: 1px solid;
box-sizing: border-box;
border-color: var(--raisin-black); border-color: var(--raisin-black);
border-radius: 20px; border-radius: 20px;
vertical-align: top; vertical-align: top;
@ -104,6 +106,7 @@
.home .networkx_style .filter-wrapper .filter-wrapper-item .rc-slider .rc-slider-handle{ .home .networkx_style .filter-wrapper .filter-wrapper-item .rc-slider .rc-slider-handle{
border: solid 2px var(--raisin-black); border: solid 2px var(--raisin-black);
box-sizing: border-box;
} }
.home .networkx_style .filter-wrapper .filter-wrapper-item .rc-slider .rc-slider-dot-active{ .home .networkx_style .filter-wrapper .filter-wrapper-item .rc-slider .rc-slider-dot-active{
@ -180,6 +183,7 @@
margin-right: 2%; margin-right: 2%;
margin-top: 20px; margin-top: 20px;
border: 1px solid; border: 1px solid;
box-sizing: border-box;
border-color: var(--raisin-black); border-color: var(--raisin-black);
border-radius: 20px; border-radius: 20px;
float: left; float: left;

View File

@ -3,10 +3,12 @@
margin-top: 10px; margin-top: 10px;
border: 1px solid; border: 1px solid;
width: 100%; width: 100%;
box-sizing: border-box;
} }
.tabs .tab-style { .tabs .tab-style {
border-bottom: 1px solid #d6d6d6 !important; border-bottom: 1px solid #d6d6d6 !important;
box-sizing: border-box;
padding: 8px !important; padding: 8px !important;
background-color: white !important; background-color: white !important;
color: var(--paynes-gray) !important; color: var(--paynes-gray) !important;
@ -16,6 +18,7 @@
.tabs .selected-tab-style { .tabs .selected-tab-style {
border-bottom: 1px solid #d6d6d6 !important; border-bottom: 1px solid #d6d6d6 !important;
border-top: 1px solid #d6d6d6 !important; border-top: 1px solid #d6d6d6 !important;
box-sizing: border-box;
padding: 8px !important; padding: 8px !important;
color: white !important; color: white !important;
background-color: var(--paynes-gray) !important; background-color: var(--paynes-gray) !important;
@ -23,13 +26,14 @@
} }
.choose-metric { .choose-metric {
margin: 20px; margin-top: 20px;
width: 100%; margin-bottom: 20px;
} }
.choose-metric .metrics-title { .choose-metric .metrics-title {
color: var(--raisin-black); color: var(--raisin-black);
padding-right: 30px; padding-left: 20px;
padding-right: 20px;
vertical-align:middle; vertical-align:middle;
display: inline-block; display: inline-block;
} }
@ -58,12 +62,14 @@
float: left; float: left;
width: 100%; width: 100%;
background-color: white; background-color: white;
margin: 20px; margin-top: 20px;
margin-bottom: 20px;
} }
.sentiment-wrapper .sentiment-title { .sentiment-wrapper .sentiment-title {
color: var(--raisin-black); color: var(--raisin-black);
padding-right: 30px; padding-left: 20px;
padding-right: 20px;
vertical-align:middle; vertical-align:middle;
display: inline-block; display: inline-block;
} }