21 lines
365 B
SCSS
21 lines
365 B
SCSS
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
padding: 12px 16px;
|
|
|
|
& > .suggestion {
|
|
width: fit-content;
|
|
padding: 8px 16px;
|
|
border-radius: 9999px;
|
|
border: 2px solid rgba(229, 231, 235, 1);
|
|
background: var(--background);
|
|
cursor: pointer;
|
|
|
|
& > .suggestionText {
|
|
color: #1f2937;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
}
|