Vlad 5 years ago
parent
commit
379eb5fbac
2 changed files with 22 additions and 2 deletions
  1. 1 1
      src/components/Auth/authButtons.js
  2. 21 1
      src/style/components/_allStaff.scss

+ 1 - 1
src/components/Auth/authButtons.js

@@ -11,7 +11,7 @@ class Authbuttons extends Component {
                     </button>
                 </Link>
                 <Link to="/registration" >
-                    <button className="butftonAuth">
+                    <button className="buttonAuth">
                         Регистрация
                     </button>
                 </Link>

+ 21 - 1
src/style/components/_allStaff.scss

@@ -242,5 +242,25 @@
     justify-content: flex-start;
     flex-direction: column;
 }
- 
+.ant-carousel .slick-dots li button {
+    border: 0;
+    cursor: pointer;
+    background: green;
+    opacity: 0.5;
+    display: block;
+    width: 25px;
+    height: 7px;
+    border-radius: 3px;
+    outline: none;
+    font-size: 0;
+    color: transparent;
+    -webkit-transition: all 0.5s;
+    transition: all 0.5s;
+    padding: 0;
+}
+.ant-carousel .slick-dots li.slick-active button {
+    background: #FD7F71;
+    opacity: 1;
+    width: 20px;
+}