DESKTOP-O04BTUJ\muzen před 3 roky
rodič
revize
67308dcaa5
2 změnil soubory, kde provedl 63 přidání a 0 odebrání
  1. 22 0
      src/common/button.scss
  2. 41 0
      src/common/main.scss

+ 22 - 0
src/common/button.scss

@@ -0,0 +1,22 @@
+button{
+  height: 100rpx;
+  line-height: 100rpx;
+}
+
+button::after{
+  content: none
+}
+
+uni-button[type=submit] {
+  background-image: linear-gradient(#A4D099, #78B06A);
+  color: #FFF;
+}
+
+uni-button[circle] {
+  border-radius: 50rpx;
+}
+
+uni-slider{
+  margin: 0;
+  width: 100%;
+}

+ 41 - 0
src/common/main.scss

@@ -0,0 +1,41 @@
+body{
+  height: 100%;
+  background-color: #181818;
+  color: #FFF;
+}
+
+page{
+  height: 100%;
+}
+
+view{
+  box-sizing: border-box;
+}
+
+view[flex]{
+  display: flex;
+}
+
+view[center]{
+  justify-content: center;
+  align-items: center;
+}
+
+view[between]{
+  justify-content:space-between;
+  align-items: center;
+}
+
+view[around]{
+  justify-content: space-around;
+  align-items: center;
+}
+
+img[mini]{
+  width: 48rpx;
+  height: 48rpx;
+}
+
+.app-container{
+  padding: 32rpx;
+}