mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-10 01:25:15 +00:00
Only remove padding when listing applications (#20382)
This prevents styling issues on the Authorization page.
This commit is contained in:
parent
97f657f818
commit
cf4992c918
|
@ -1064,11 +1064,18 @@ code {
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
padding-bottom: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Only remove padding when listing applications, to prevent styling issues on
|
||||||
|
// the Authorization page.
|
||||||
|
.applications-list {
|
||||||
|
.permissions-list__item:last-child {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.keywords-table {
|
.keywords-table {
|
||||||
thead {
|
thead {
|
||||||
th {
|
th {
|
||||||
|
|
Loading…
Reference in a new issue