1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-16 22:48:27 +00:00

Don't overflow on notification table

This commit is contained in:
Gusted
2022-04-27 01:57:00 +02:00
parent 5689d9f362
commit bed6577d09

View File

@@ -7,7 +7,7 @@
display: block;
font-weight: 600;
font-size: 1.3rem;
margin-top: -.2rem;
margin-top: -0.2rem;
line-height: 1.3rem;
}
@@ -47,7 +47,7 @@
#profile-avatar {
background: none;
padding: 1rem 1rem .25rem;
padding: 1rem 1rem 0.25rem;
img {
width: 100%;
@@ -175,3 +175,7 @@
max-width: 60px;
}
}
#notification_div .tab.segment {
overflow-x: scroll;
}