28 lines
539 B
SCSS
28 lines
539 B
SCSS
|
footer {
|
||
|
background: rgb(30, 30, 45);
|
||
|
border-top: 1px solid rgb(40, 40, 60);
|
||
|
color: rgb(200, 200, 230);
|
||
|
.ui.container {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
min-height: 64px;
|
||
|
width: 1127px !important;
|
||
|
.links {
|
||
|
margin-left: auto;
|
||
|
a {
|
||
|
color: rgb(200, 200, 230);
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
> * {
|
||
|
border-left-color: rgb(200, 200, 230);
|
||
|
}
|
||
|
a[href~="/api/swagger"],
|
||
|
.version {
|
||
|
display:none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|