mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-07-10 17:13:17 +02:00
Fix small header glitches on mobile view
This commit is contained in:
@@ -38,7 +38,7 @@ type Props = {
|
||||
};
|
||||
|
||||
const StyledLogoutButton = styled(Link)`
|
||||
@media screen and (max-width: ${devices.desktop.width}px) {
|
||||
@media screen and (max-width: ${devices.desktop.width - 1}px) {
|
||||
border-top: 1px solid white;
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
|
||||
@@ -38,7 +38,7 @@ type Props = {
|
||||
};
|
||||
|
||||
const StyledLogoutButton = styled(Link)`
|
||||
@media screen and (max-width: ${devices.desktop.width}px) {
|
||||
@media screen and (max-width: ${devices.desktop.width}px -1 ) {
|
||||
border-top: 1px solid white;
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
|
||||
@@ -63,7 +63,7 @@ const DropDownMenu = styled.div`
|
||||
min-width: 20rem;
|
||||
}
|
||||
|
||||
@media screen and (max-width: ${devices.desktop.width}px) {
|
||||
@media screen and (max-width: ${devices.desktop.width - 1}px) {
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user