Browse Source

fix rays on mobile view

pull/7/head
KVAZAR 2 years ago committed by GitHub
parent
commit
7ffa8d0e40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      public/css/app.css

6
public/css/app.css

@ -98,7 +98,8 @@ img:hover {
content: ""; content: "";
background-image: linear-gradient(to left, #9B94BF, #18102d); background-image: linear-gradient(to left, #9B94BF, #18102d);
height: 1px; height: 1px;
width: 360px; width: 50%;
max-width: 360px;
display: inline-block; display: inline-block;
} }
@ -106,7 +107,8 @@ img:hover {
content: ""; content: "";
background-image: linear-gradient(to right, #9B94BF, #18102d); background-image: linear-gradient(to right, #9B94BF, #18102d);
height: 1px; height: 1px;
width: 360px; width: 50%;
max-width: 360px;
display: inline-block; display: inline-block;
} }

Loading…
Cancel
Save