knowyt/client/src/components/QuoteCardNew.vue

39 lines
775 B
Vue
Raw Normal View History

2022-08-09 20:36:39 +00:00
<template>
2022-08-27 15:26:59 +00:00
<div class="quote-card-new__container">
2022-08-09 20:36:39 +00:00
<div class="quote-card-new__new">+</div>
</div>
</template>
<style lang="scss">
@import '~/assets/css/components';
.quote-card-new {
&__container {
position: relative;
display: flex;
align-items: center;
width: 300px;
height: 150px;
margin: 32px;
padding: 32px;
background-color: $quote-new-background-color;
border: $quote-new-border;
border-radius: 0 16px 0 0;
cursor: pointer;
2022-08-11 18:19:42 +00:00
&:hover {
background-color: $quote-new-hover-background-color;
border: $quote-new-hover-border;
color: $quote-new-hover-text-color;
}
2022-08-09 20:36:39 +00:00
}
&__new {
width: 100%;
font-size: 72px;
color: $quote-new-text-color;
text-align: center;
}
}
</style>