90 lines
1.6 KiB
Plaintext
Executable File

.searcher {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
.ant-input-affix-wrapper {
border: 0;
padding: 0;
margin: 0;
height: 60px;
border-radius: 10px;
padding: 0 10px;
.ant-input-prefix {
font-size: 2rem;
svg {
color: var(--text-color);
}
}
.ant-input {
height: 100%;
color: var(--text-color);
font-size: 1rem;
}
}
.results {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
width: 100%;
padding: 10px;
margin-top: 20px;
background-color: var(--background-color-primary);
border-radius: 8px;
.category {
width: 100%;
margin-bottom: 20px;
h3 {
font-size: 2rem;
font-weight: 600;
margin-bottom: 10px;
}
.suggestions {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 90%;
margin: auto;
.suggestion {
width: 100%;
margin-bottom: 10px;
padding: 10px;
border-radius: 8px;
background-color: var(--background-color-accent);
}
}
}
}
.ant-empty {
align-self: center;
}
}