Skip to content

Commit

Permalink
style edit
Browse files Browse the repository at this point in the history
  • Loading branch information
sashachernyakova committed Dec 11, 2024
1 parent b59fe20 commit cf0db0c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions citywalls2/public/stylesheets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,25 @@ th {
.centered {
justify-content: center; /* Центрирование по горизонтали */
margin: 20px 0; /* Отступы сверху и снизу */
}

.suggestions-list {
position: absolute;
background: white;
border: 1px solid #ccc;
max-height: 150px;
overflow-y: auto;
width: calc(100% - 20px);
margin-top: 2px;
padding: 0;
list-style: none;
}

.suggestion-item {
padding: 10px;
cursor: pointer;
}

.suggestion-item:hover {
background: #f0f0f0;
}

0 comments on commit cf0db0c

Please sign in to comment.