1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-29 11:05:01 +02:00
bitwarden-desktop/src/scss/environment.scss
Addison Beck 032d2be990
[bug] Remove old mac-bar styling (#1246)
With the account switching work a header was added to the desktop app that new acts as a home for the mac window controls.
Previously we needed a special home for these controls, but since moving them we are not just creating empty space.
Removing this class and the divs that use it corrects the behavior.
2022-01-20 07:44:20 -05:00

66 lines
857 B
SCSS

html.os_windows {
body {
border-top: 1px solid #dddddd;
}
&.theme_dark body {
border-top-color: #000000;
}
}
html.os_macos {
body.layout_frontend {
-webkit-app-region: drag;
button,
a,
i,
b,
span,
input,
p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
select,
textarea,
label,
.box,
.modal-backdrop {
-webkit-app-region: no-drag;
}
}
#login-page {
.content {
a.settings-icon {
position: absolute;
left: unset;
right: 20px;
span {
margin-right: 8px;
float: left;
}
}
}
}
.vault .header-search {
-webkit-app-region: drag;
input,
i {
-webkit-app-region: no-drag;
}
}
.vault > .groupings > .content > .inner-content {
padding-top: 0;
}
}