Mypal68/browser/components/aboutlogins/content/aboutLogins.css
2024-07-21 11:54:34 +03:00

45 lines
919 B
CSS

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
body {
--sidebar-width: 320px;
display: grid;
grid-template-columns: var(--sidebar-width) 1fr;
grid-template-rows: 75px 1fr;
grid-template-areas: "header header"
"logins login";
height: 100vh;
}
header {
display: flex;
grid-area: header;
align-items: center;
background-color: var(--in-content-page-background);
border-bottom: 1px solid var(--in-content-box-border-color);
padding-inline-end: 23px;
}
login-filter {
min-width: 320px;
max-width: 400px;
margin-inline: 40px auto;
flex-grow: 1;
align-self: center;
}
menu-button {
margin-inline-start: 18px;
}
login-list {
grid-area: logins;
}
login-item {
grid-area: login;
max-width: 800px;
}