Skip to content

Commit

Permalink
fix: refactor styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ufaboy committed Aug 11, 2023
1 parent 909d3c8 commit 2e15e4f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 17 deletions.
29 changes: 14 additions & 15 deletions src/App.ce.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,29 @@ currentPage.value = WeatherList

<style>
.weather-page,
.settings-page {
padding: 1rem;
max-width: 20rem;
position: relative;
font-family: Verdana, Geneva, Tahoma, sans-serif;
.settings-page-wrapper {
padding: 1rem;
max-width: 20rem;
position: relative;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.settings-page {
background-image: radial-gradient(circle, #bbece1, #006c96);
border-radius: 1rem;
background-image: radial-gradient(circle, #bbece1, #006c96);
border-radius: 1rem;
padding: 1rem;
}
.weather-item {
/* background-color: #C4E9E5; */
background-image: radial-gradient(circle, #bbece1, #006c96);
border-radius: 0.5rem;
background-image: radial-gradient(circle, #bbece1, #006c96);
border-radius: 0.5rem;
}
.weather-img-wrapper {
padding: 1rem;
display: flex;
justify-content: center;
align-items: center;
padding: 1rem;
display: flex;
justify-content: center;
align-items: center;
}
.weather-info {
border-left: 2px solid #AFD1CE;
Expand All @@ -48,7 +48,6 @@ currentPage.value = WeatherList
align-items: center;
width: 100%;
}
.weather-img {}
.draggable-li {
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
Expand Down
2 changes: 0 additions & 2 deletions src/assets/style/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
}

.weather-item {
/* background-color: #C4E9E5; */
background-image: radial-gradient(circle, #bbece1, #006c96);
border-radius: 0.5rem;
}
Expand All @@ -31,7 +30,6 @@
align-items: center;
width: 100%;
}
.weather-img {}

.draggable-li {
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
Expand Down

0 comments on commit 2e15e4f

Please sign in to comment.