22 lines
586 B
CSS
22 lines
586 B
CSS
.notice-panel {
|
|
@apply bg-white border-primary border-2 p-8 text-primary;
|
|
|
|
&__content {
|
|
@apply flex gap-4;
|
|
|
|
.icon {
|
|
@apply bg-carhop-green-700 shrink-0 w-12 h-12 flex items-center justify-center;
|
|
&:before {
|
|
content: '';
|
|
@apply block w-8 h-8 bg-no-repeat bg-center bg-contain;
|
|
background-image: url('../resources/img/icons/carhop-icon-index-panel.svg');
|
|
/* background-image: url('../resources/img/icons/icon-losange.svg'); */
|
|
}
|
|
}
|
|
|
|
> .innerblocks > :last-child {
|
|
@apply !pb-0;
|
|
}
|
|
}
|
|
}
|