1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Better align items using flex within review request box (#11879)

* Better align items using flex within review request box

* use justify-content

Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
Cirno the Strongest
2020-06-15 09:37:00 +02:00
committed by GitHub
parent d1c547468a
commit 5f47835f4c
2 changed files with 60 additions and 48 deletions

View File

@@ -657,14 +657,18 @@
}
.review-item {
display: flex;
justify-content: space-between;
align-items: center;
.review-item-left,
.review-item-right {
display: flex;
align-items: center;
}
.avatar,
.type-icon {
float: none;
display: inline-block;
text-align: center;
vertical-align: middle;
.svg {
width: 23px;
height: 23px;
@@ -676,8 +680,12 @@
}
.type-icon {
float: right;
align-self: flex-start;
margin-right: 1em;
i {
line-height: 1.8em;
}
}
.divider {