fix: #2957 Portrait Buttons Make Action Buttons Wrap (#2965)

Co-authored-by: thisProjects <wibbet@wobbet.com>
This commit is contained in:
Nathan
2023-04-28 20:09:00 +01:00
committed by GitHub
parent 7b3890debd
commit cd74c42967
4 changed files with 54 additions and 46 deletions

View File

@@ -47,10 +47,24 @@
}
.mobileActionButtonMenu {
position: absolute;
top: 4px;
right: 10px;
z-index: 200;
display: none;
@include screen(tablet) {
display: block;
position: absolute;
top: 4px;
right: 10px;
z-index: 200;
}
}
.desktopActionButtons {
display: block;
@include screen(tablet) {
display: none;
}
}
//not sure if this is needed