1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

perf(Linux): title bar improvements

This commit is contained in:
2022-06-08 13:04:19 +02:00
parent 5fa8bf38e4
commit 85cec05f70
6 changed files with 37 additions and 7 deletions

View File

@ -27,4 +27,14 @@ $titlebar-height: 1.5rem;
$settingbar-width: 3rem;
$explorebar-width: 14rem;
$footer-height: 1.5rem;
$excluding-size: $footer-height + $titlebar-height;
@function get-excluding-size(){
@if $platform == linux{
@return $footer-height;
}
@else {
@return $footer-height + $titlebar-height;
}
}
$excluding-size: get-excluding-size();