Skip to content

Commit d1f5e0c

Browse files
committed
Fix sizing and colors
1 parent 10412ba commit d1f5e0c

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed

app/resources/sass/app.scss

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -560,15 +560,16 @@ fieldset .field {
560560
display: inline-block;
561561
width: 245px;
562562
min-height: 250px;
563-
@media screen and (max-width: 830px) {
564-
width: 134px;
565-
min-height: 137px;
566-
}
567563
margin-left: 10px;
568564
margin-right: 10px;
569565
margin-bottom: 59px;
570566
background-color: rgb(55, 59, 62);
571567
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
568+
@media screen and (max-width: 830px) {
569+
width: 134px;
570+
min-height: 137px;
571+
margin-bottom: 43px;
572+
}
572573
}
573574

574575
.location:hover {
@@ -594,11 +595,23 @@ fieldset .field {
594595

595596
.location-icon {
596597
text-align: center;
598+
transition: transform 0.2s ease;
597599
@media screen and (min-width: 831px) {
598600
padding-top: 35px;
599601
}
600602
}
601603

604+
.location-icon svg {
605+
transition: transform 0.3s ease;
606+
@media screen and (max-width: 831px) {
607+
font-size: 3em;
608+
}
609+
}
610+
611+
.location-icon svg:hover {
612+
transform: scale(1.2);
613+
}
614+
602615
.location-footer {
603616
position: relative;
604617
bottom: -52px;
@@ -1158,6 +1171,7 @@ fieldset .field {
11581171
width: 100%;
11591172
height: 45px;
11601173
background-color: rgba(0, 0, 0, 0.8);
1174+
color: rgb(150, 150, 150);
11611175
}
11621176

11631177
.plant-photo-view {
@@ -2700,6 +2714,10 @@ fieldset .field {
27002714
text-align: center;
27012715
}
27022716

2717+
.profile-shared-photos svg {
2718+
color: rgb(150, 150, 150);
2719+
}
2720+
27032721
.admin-tabs {
27042722
margin-top: 23px;
27052723
}
@@ -3159,11 +3177,11 @@ fieldset .field {
31593177
border: 1px solid rgb(200, 200, 200);
31603178
}
31613179

3162-
.admin-themes-list td i {
3180+
.admin-themes-list td svg {
31633181
color: rgb(150, 150, 150);
31643182
}
31653183

3166-
.admin-themes-list td i:hover {
3184+
.admin-themes-list td svg:hover {
31673185
color: rgb(150, 150, 150);
31683186
}
31693187

public/js/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)