Browse Source

fixes to tile css

pull/11/head
KodeStar 7 years ago
parent
commit
07ae03445a
  1. 16
      public/css/app.css
  2. 2
      public/mix-manifest.json
  3. 12
      resources/assets/sass/_app.scss

16
public/css/app.css

@ -440,9 +440,9 @@ body {
#app.header .item, #app.header .item,
#app.header .add-item { #app.header .add-item {
-webkit-transform: scale(0.8); -webkit-transform: scale(0.9);
transform: scale(0.8); transform: scale(0.9);
opacity: 0.7; opacity: 0.8;
margin: 20px 0; margin: 20px 0;
} }
@ -451,12 +451,12 @@ body {
} }
.add-item { .add-item {
width: 300px; width: 280px;
height: 130px; height: 90px;
margin: 20px; margin: 20px;
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: 0 0 300px; -ms-flex: 0 0 280px;
flex: 0 0 300px; flex: 0 0 280px;
border-radius: 6px; border-radius: 6px;
padding: 20px; padding: 20px;
border: 4px dashed rgba(255, 255, 255, 0.7); border: 4px dashed rgba(255, 255, 255, 0.7);
@ -477,7 +477,7 @@ body {
display: block; display: block;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 90px; line-height: 40px;
color: white; color: white;
font-size: 19px; font-size: 19px;
} }

2
public/mix-manifest.json

@ -1,4 +1,4 @@
{ {
"/css/app.css": "/css/app.css?id=2edca3a26209c37ea9d2", "/css/app.css": "/css/app.css?id=b971aae44f35616b817d",
"/js/app.js": "/js/app.js?id=aa9e426dc7b92d42d3b2" "/js/app.js": "/js/app.js?id=aa9e426dc7b92d42d3b2"
} }

12
resources/assets/sass/_app.scss

@ -165,8 +165,8 @@ body {
//width: 240px; //width: 240px;
} }
.item, .add-item { .item, .add-item {
transform: scale(0.8); transform: scale(0.9);
opacity: 0.7; opacity: 0.8;
margin: 20px 0; margin: 20px 0;
} }
} }
@ -177,10 +177,10 @@ body {
} }
} }
.add-item { .add-item {
width: 300px; width: 280px;
height: 130px; height: 90px;
margin: 20px; margin: 20px;
flex: 0 0 300px; flex: 0 0 280px;
border-radius: 6px; border-radius: 6px;
padding: 20px; padding: 20px;
border: 4px dashed rgba(255,255,255,0.7); border: 4px dashed rgba(255,255,255,0.7);
@ -197,7 +197,7 @@ body {
display: block; display: block;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 90px; line-height: 40px;
color: white; color: white;
font-size: 19px; font-size: 19px;
} }

Loading…
Cancel
Save