Only remove padding when listing applications (#20382)

This prevents styling issues on the Authorization page.
local
Connor Shea 1 year ago committed by GitHub
parent 97f657f818
commit cf4992c918
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      app/javascript/styles/mastodon/forms.scss

@ -1064,11 +1064,18 @@ code {
&:last-child {
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 {
thead {
th {

Loading…
Cancel
Save