generated from tpl/obsidian-sample-plugin
30 lines
427 B
SCSS
30 lines
427 B
SCSS
.obt-goodreads-search-suggest {
|
|
&__item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
&__cover {
|
|
max-width: 100px;
|
|
max-height: 100px;
|
|
margin-right: 10px;
|
|
object-fit: cover;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
&__info {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&__title {
|
|
color: var(--text-normal);
|
|
font-size: var(--font-ui-medium);
|
|
}
|
|
|
|
&__subtitle {
|
|
color: var(--text-muted);
|
|
font-size: var(--font-ui-small);
|
|
}
|
|
}
|