1
0
Fork 0
forked from forgejo/forgejo

Don't overflow on notification table

This commit is contained in:
Gusted 2022-04-27 01:57:00 +02:00
parent 5689d9f362
commit bed6577d09
No known key found for this signature in database
GPG key ID: FD821B732837125F

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;
}