This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
forgejo-tweaks/custom/css/tweaks.css

33 lines
1.2 KiB
CSS

/**
* Tweaks done to the [Gitea Modern](https://git.sofiaritz.com/mirrors/Gitea-Modern) theme.
* This file is loaded inside the [theme-gitea-modern.css](https://git.sofiaritz.com/mirrors/Gitea-Modern/src/branch/main/theme-gitea-modern.css)
* located in this same directory.
* The `theme-forgejo-auto` theme is also loaded there.
**/
/* Improve look of the repo listings */
.ui.repository.list .item .header .repo-title, .ui.user.list .item .header .repo-title {
display: flex !important;
gap: 1rem;
}
.ui.repository.list .item .description .time, .ui.user.list .item .description .time {
grid-row: auto !important;
grid-column: auto !important;
margin-left: 0 !important;
text-align: left !important;
margin-top: 0.5rem;
margin-block: unset !important;
}
/* Improve look of the profile page */
div.page-content.user.profile div.ui.container div.ui.stackable.grid div.ui.four.wide.column {
width: 20% !important;
}
/* Align the top of the repo view */
@media only screen and (min-width: 850px) {
.page-content.repository:not(.issues.repository.milestones) .header-wrapper > .ui.container:first-child {
padding-left: 67px !important;
}
}