mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-01 12:28:41 +00:00
64f81bc316
Signed-off-by: Thomas Citharel <tcit@tcit.fr> use scss Signed-off-by: Thomas Citharel <tcit@tcit.fr> fix build, add babel, fix annotations fixes (and improvements !) for baggy add live reload & environments & eslint & theme fixes
50 lines
668 B
SCSS
Executable file
50 lines
668 B
SCSS
Executable file
/* ==========================================================================
|
|
Layout
|
|
========================================================================== */
|
|
|
|
body {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
flex-direction: column;
|
|
background: #fafafa;
|
|
|
|
&.login main {
|
|
padding: 0;
|
|
min-height: 100vh;
|
|
}
|
|
}
|
|
|
|
.border-bottom {
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
nav,
|
|
main,
|
|
footer {
|
|
padding-left: 240px;
|
|
}
|
|
|
|
main,
|
|
#content,
|
|
.valign-wrapper {
|
|
height: 100%;
|
|
}
|
|
|
|
#main {
|
|
flex: 1 0 auto;
|
|
|
|
.logo {
|
|
a {
|
|
height: 100pt;
|
|
}
|
|
|
|
img {
|
|
height: 100pt;
|
|
width: 100pt;
|
|
}
|
|
|
|
&:hover {
|
|
background: transparent;
|
|
}
|
|
}
|
|
}
|