FreeDATA/gui/src/styles.css

31 lines
483 B
CSS
Raw Normal View History

/* disable scrolling in main window */
body {
padding-right: 0px !important;
overflow-y: hidden !important;
2022-04-03 15:26:24 +02:00
overflow-x: hidden !important;
}
/*Progress bars with centered text*/
.progress {
position: relative;
}
.progress span {
position: absolute;
display: block;
width: 100%;
color: black;
}
2022-04-03 15:26:24 +02:00
/* smooth scrolling */
html {
scroll-behavior: smooth;
}
2022-04-03 15:26:24 +02:00
/* hide scrollbar in callsign list */
#callsignlist::-webkit-scrollbar {
display: none;
}