38 lines
643 B
SCSS
38 lines
643 B
SCSS
.callout[data-callout~="local"] {
|
|
//float: right;
|
|
width: 28px;
|
|
height: 28px;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: unset;
|
|
overflow: unset;
|
|
position: relative;
|
|
z-index: 4;
|
|
background-color: unset;
|
|
border: unset;
|
|
& > .callout-title,
|
|
& > p {
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
padding: 0;
|
|
margin: 0;
|
|
z-index: 5;
|
|
border-radius: unset;
|
|
|
|
& > .callout-icon {
|
|
display: none;
|
|
}
|
|
& img {
|
|
border-radius: unset;
|
|
}
|
|
}
|
|
& > * a {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
overflow: hidden;
|
|
font-size: 0;
|
|
}
|
|
}
|