浏览代码

Update custom.scss

Daniel Supernault 6 年之前
父节点
当前提交
70e95eac24
共有 1 个文件被更改,包括 24 次插入0 次删除
  1. 24 0
      resources/assets/sass/custom.scss

+ 24 - 0
resources/assets/sass/custom.scss

@@ -33,6 +33,10 @@ body, button, input, textarea {
   }
 }
 
+.dropdown-menu {
+  min-width: 13rem;
+}
+
 .text-dark {
   color: #212529 !important;
 }
@@ -257,6 +261,7 @@ body, button, input, textarea {
     transform: translateY(0);
   }
 }
+
 .details-animated[open] {
   animation-name: fadeInDown;
   animation-duration: 0.5s;
@@ -308,3 +313,22 @@ details summary::-webkit-details-marker {
   border: 0 !important;
   border-radius: 0 !important;
 }
+
+.input-elevated {
+  font-size: 16px;
+  line-height: 1.5;
+  border: none;
+  background: #FFFFFF;
+  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08);
+  border-radius: 5px;
+  padding: .5em 1em .5em .5em;
+} 
+
+.input-elevated::placeholder {
+  color: #838D99;
+}
+
+.input-elevated:focus {
+  outline: none;
+  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.16);
+}