Improve search results layout/styling

This commit is contained in:
2026-01-27 08:48:48 +07:00
parent 254e177cbf
commit e8af959be6
3 changed files with 16 additions and 9 deletions

View File

@@ -226,6 +226,9 @@ body {
.sidebar-header h2 {
margin: 0;
font-size: 1.2rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.sidebar-content {
@@ -365,29 +368,31 @@ body {
.places-list {
list-style: none;
padding: 0;
margin: 0;
margin: -1rem;
}
.places-list li {
margin-bottom: 0.5rem;
}
.place-item {
width: 100%;
text-align: left;
background: #f8f9fa;
border: 1px solid #ddd;
padding: 0.75rem;
border-radius: 4px;
border: none;
border-bottom: 1px solid #eee;
background: #fff;
color: #333;
padding: 1rem;
cursor: pointer;
transition: background 0.2s;
font-family: inherit;
}
.place-item:hover {
background: #e9ecef;
background: #eee;
}
.place-name {
font-size: 1rem;
font-weight: bold;
margin-bottom: 0.25rem;
}