mirror of
https://github.com/tabler/tabler.git
synced 2026-01-11 23:20:10 +04:00
16 lines
308 B
SCSS
16 lines
308 B
SCSS
.testimonial {
|
|
display: block;
|
|
background: $color-gray;
|
|
border-radius: $border-radius-lg;
|
|
padding: $gap-4;
|
|
margin-bottom: $gap-4;
|
|
color: inherit;
|
|
box-shadow: $shadow-card-sm;
|
|
transition: $transition-duration box-shadow;
|
|
|
|
&:hover {
|
|
color: inherit;
|
|
box-shadow: $shadow-card-lg;
|
|
}
|
|
}
|