You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
417 B
SCSS
21 lines
417 B
SCSS
@use '../utilities/main_utilities' as *;
|
|
|
|
/* Quotes */
|
|
blockquote {
|
|
display: block;
|
|
font-size: x-large;
|
|
line-height: $line-height;
|
|
margin: 1rem auto;
|
|
max-width: $width-card-medium;
|
|
padding: 1.5rem 1rem;
|
|
text-align: $justify-important;
|
|
}
|
|
|
|
blockquote footer{
|
|
color: $color-text-secondary;
|
|
display: block;
|
|
font-size: small;
|
|
line-height: $line-height;
|
|
padding: 1.5rem 0;
|
|
}
|