feat: add weather forecasting

This commit is contained in:
insects 2025-03-11 14:57:28 +01:00
parent 6eea0dc29f
commit 705e7b1dc0
20 changed files with 181 additions and 19 deletions

View file

@ -29,6 +29,11 @@ header .muted {
font-weight: normal;
}
main {
display: grid;
grid-template-columns: 5fr 1fr;
}
.new-buttons {
display: flex;
gap: 5px;
@ -169,3 +174,26 @@ span#password {
.copyable:hover {
cursor: pointer;
}
.sidebar {
display: flex;
flex-direction: column;
align-items: center;
margin: 10px 0;
}
.weather-list {
display: flex;
align-items: center;
gap: 3px;
}
.weather {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 12px;
color: #555;
}