🐛 Remove overlap on mobile between buttons (#2233)

* remove overlap on mobile between buttons

* update breakpoints
This commit is contained in:
Mutasem Aldmour 2021-10-05 20:33:25 +02:00 committed by GitHub
parent a4374e235e
commit 582f9a1e61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -59,6 +59,7 @@ $--gift-notification-outer-color: #fff;
$--tags-manager-min-height: 300px; $--tags-manager-min-height: 300px;
// based on element.io breakpoints // based on element.io breakpoints
$--breakpoint-2xs: 600px;
$--breakpoint-xs: 768px; $--breakpoint-xs: 768px;
$--breakpoint-sm: 992px; $--breakpoint-sm: 992px;
$--breakpoint-md: 1200px; $--breakpoint-md: 1200px;
@ -110,3 +111,4 @@ $--version-card-description-text-color: #7d7d87;
$--version-card-release-date-text-color: #909399; $--version-card-release-date-text-color: #909399;
$--version-card-box-shadow-color: rgba(109, 48, 40, 0.07); $--version-card-box-shadow-color: rgba(109, 48, 40, 0.07);

View file

@ -2308,6 +2308,10 @@ export default mixins(
color: #444; color: #444;
padding-right: 5px; padding-right: 5px;
@media (max-width: $--breakpoint-2xs) {
bottom: 90px;
}
&.expanded { &.expanded {
left: $--sidebar-expanded-width + $--zoom-menu-margin; left: $--sidebar-expanded-width + $--zoom-menu-margin;
} }