mirror of https://github.com/zulip/zulip.git
gear_menu_popover: Fix padding of items in org info section.
We currently don't have appropriate padding applied to the lists and links in the org info section of the gear menu popover. This becomes an issue when we have a long org name, org url or org version, as text starts touching the edges of the popover. This commit adds the missing padding to the items in the org info section of the gear menu popover.
This commit is contained in:
parent
581d4ce3c5
commit
ada73eb6e0
|
@ -1344,7 +1344,7 @@ ul {
|
|||
}
|
||||
|
||||
.navbar-dropdown-menu-link {
|
||||
padding: 2px 0;
|
||||
padding: 2px 10px;
|
||||
flex-grow: 1;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
|
@ -1369,6 +1369,7 @@ ul {
|
|||
|
||||
.org-url {
|
||||
margin-bottom: 7px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.org-name,
|
||||
|
@ -1380,6 +1381,7 @@ ul {
|
|||
font-size: 17px;
|
||||
font-weight: 600;
|
||||
line-height: 22px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.org-plan,
|
||||
|
|
Loading…
Reference in New Issue