css: adapt CollectQuotes, QuoteCard, QuoteCardNew to smartphone
This commit is contained in:
parent
75f476c55f
commit
ce31b88acf
@ -38,9 +38,15 @@ const editEnd = () => {
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import '~/assets/css/components';
|
||||
|
||||
.collect-quotes {
|
||||
&__explaination-box {
|
||||
margin: 16px;
|
||||
|
||||
@media (max-width: $phone-width) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&__quotes {
|
||||
|
@ -110,6 +110,12 @@ const keydown = async (ev: KeyboardEvent) => {
|
||||
border-radius: 0 16px 0 0;
|
||||
color: $quote-text-color;
|
||||
|
||||
@media (max-width: $phone-width) {
|
||||
width: 240px;
|
||||
height: 120px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
&__editable {
|
||||
cursor: text;
|
||||
|
||||
@ -124,14 +130,26 @@ const keydown = async (ev: KeyboardEvent) => {
|
||||
|
||||
&__text-short {
|
||||
font-size: 24px;
|
||||
|
||||
@media (max-width: $phone-width) {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
&__text-medium {
|
||||
font-size: 20px;
|
||||
|
||||
@media (max-width: $phone-width) {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
&__text-long {
|
||||
font-size: 18px;
|
||||
|
||||
@media (max-width: $phone-width) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
width: 300px;
|
||||
height: 150px;
|
||||
margin: 32px;
|
||||
padding: 32px;
|
||||
padding: 28px;
|
||||
background-color: $quote-new-background-color;
|
||||
border: $quote-new-border;
|
||||
border-radius: 0 16px 0 0;
|
||||
@ -26,6 +26,12 @@
|
||||
border: $quote-new-hover-border;
|
||||
color: $quote-new-hover-text-color;
|
||||
}
|
||||
|
||||
@media (max-width: $phone-width) {
|
||||
width: 240px;
|
||||
height: 120px;
|
||||
padding: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
&__new {
|
||||
|
Loading…
Reference in New Issue
Block a user