keanu-weblite/src/assets/css/main.scss

36 lines
1.1 KiB
SCSS
Raw Normal View History

$background: #ffffff;
2020-12-09 15:20:50 +01:00
2020-12-16 15:57:44 +01:00
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
2021-01-11 17:44:09 +01:00
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
2020-12-16 15:57:44 +01:00
$chat-background: $background;
$chat-standard-padding: 32px;
$chat-standard-padding-s: 16px;
$chat-standard-padding-xs: 8px;
2021-01-11 17:44:09 +01:00
$chat-text-size: 1.0px;
$chat-button-height: 50px;
.v-btn.outlined-button {
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 11 * $chat-text-size;
color: black;
background-color: white !important;
border: 1px solid black;
border-radius: $chat-standard-padding / 2;
height: $chat-standard-padding;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
}
.v-btn.filled-button {
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 11 * $chat-text-size;
color: white;
border: none;
border-radius: $chat-standard-padding / 2;
height: $chat-standard-padding;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
}