48 lines
1,010 B
SCSS
48 lines
1,010 B
SCSS
footer {
|
|
background: $bg30;
|
|
border-top: 1px solid $bg40;
|
|
color: $white-dark;
|
|
text-transform: lowercase;
|
|
.ui.container {
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 64px;
|
|
width: 1127px !important;
|
|
.links {
|
|
margin-left: auto;
|
|
a {
|
|
color: $white-dark;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
> * {
|
|
border: 0;
|
|
padding: 0;
|
|
margin-left: 30px;
|
|
}
|
|
a {
|
|
&[href*="/api/swagger"] {
|
|
@if $vrifoxcustomization == true and $type == static {
|
|
display: none;
|
|
}
|
|
}
|
|
&[href*="gitea.io"]:not(.customlink) {
|
|
@if $vrifoxcustomization == true {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
.version {
|
|
@if $vrifoxcustomization == true and $type == static {
|
|
display: none;
|
|
}
|
|
}
|
|
@if $disablelanguagebutton == true {
|
|
.language {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|