vrifox/gitea-theme
Archived
1
0
Fork 0
This repository has been archived on 2022-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-theme/source/partials/_footer.scss

48 lines
1 KiB
SCSS

footer {
background: rgb(30, 30, 45);
border-top: 1px solid rgb(40, 40, 60);
color: rgb(215, 215, 225);
text-transform: lowercase;
.ui.container {
display: flex;
align-items: center;
min-height: 64px;
width: 1127px !important;
.links {
margin-left: auto;
a {
color: rgb(215, 215, 225);
&:hover {
text-decoration: underline;
}
}
> * {
border: 0;
padding: 0;
margin-left: 30px;
}
a {
&[href*="/api/swagger"] {
@if $vrifoxcustomization == true and $type == frontend {
display: none;
}
}
&[href*="gitea.io"]:not(.customlink) {
@if $vrifoxcustomization == true {
display: none;
}
}
}
.version {
@if $vrifoxcustomization == true and $type == frontend {
display: none;
}
}
@if $disablelanguagebutton == true {
.language {
display: none;
}
}
}
}
}