Browse Source

muted the switch user button until it's hovered over

pull/260/head
Chris 6 years ago
parent
commit
0213c81e0d
  1. 9
      public/css/app.css
  2. 2
      public/mix-manifest.json
  3. 7
      resources/assets/sass/_app.scss

9
public/css/app.css

@ -273,11 +273,18 @@ body {
color: white;
text-decoration: none;
margin-left: -10px;
margin-right: -12px;
margin-right: -10px;
margin-bottom: -10px;
margin-top: 8px;
border-radius: 0;
width: calc(100% + 22px);
background: rgba(255, 255, 255, 0.15);
-webkit-transition: all .35s ease-in-out;
transition: all .35s ease-in-out;
}
#switchuser .btn:hover {
background: #d64d55;
}
#app {

2
public/mix-manifest.json

@ -1,4 +1,4 @@
{
"/css/app.css": "/css/app.css?id=1dc828711282cb6af1c7",
"/css/app.css": "/css/app.css?id=069679353f0460295a49",
"/js/app.js": "/js/app.js?id=f18d23b8fc7a094a2c66"
}

7
resources/assets/sass/_app.scss

@ -34,11 +34,16 @@ body {
color: white;
text-decoration: none;
margin-left: -10px;
margin-right: -12px;
margin-right: -10px;
margin-bottom: -10px;
margin-top: 8px;
border-radius: 0;
width: calc(100% + 22px);
background: rgba(255, 255, 255, 0.15);
transition: all .35s ease-in-out;
&:hover {
background: #d64d55;
}
}
}
#app {

Loading…
Cancel
Save