mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 00:41:24 +00:00
49 lines
No EOL
693 B
SCSS
49 lines
No EOL
693 B
SCSS
@import "global";
|
|
|
|
html
|
|
{
|
|
height: 100%;
|
|
font-size: $font-size;
|
|
}
|
|
body
|
|
{
|
|
font-family: 'Source Sans Pro', sans-serif;
|
|
line-height: $font-line-height;
|
|
}
|
|
|
|
#window
|
|
{
|
|
min-height: 100vh;
|
|
background: $color-canvas;
|
|
}
|
|
|
|
.badge
|
|
{
|
|
background: $color-money;
|
|
display: inline-block;
|
|
padding: 2px;
|
|
color: white;
|
|
border-radius: 2px;
|
|
}
|
|
.credit-amount--indicator
|
|
{
|
|
font-weight: bold;
|
|
color: $color-money;
|
|
}
|
|
|
|
#main-content
|
|
{
|
|
padding: $spacing-vertical;
|
|
margin-top: $height-header;
|
|
display: flex;
|
|
flex-direction: column;
|
|
main {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 100%;
|
|
}
|
|
main.main--single-column
|
|
{
|
|
width: $width-page-constrained;
|
|
}
|
|
} |