feat: add weather forecasting
This commit is contained in:
parent
6eea0dc29f
commit
705e7b1dc0
20 changed files with 181 additions and 19 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue