diff --git a/resources/views/auth/index.blade.php b/resources/views/auth/index.blade.php index 8c9b89a..33c9742 100644 --- a/resources/views/auth/index.blade.php +++ b/resources/views/auth/index.blade.php @@ -19,20 +19,6 @@ .login-wrapper{ min-height: 650px; } - - .carousel-inner{ - height: 490px; - } - - .carousel-item{ - height: 490px; - } - - .carousel-item img{ - width: 100%; - height: 100%; - object-fit: contain; - } .login-card{ min-height: 300px; } @@ -42,24 +28,92 @@ flex-direction:column; justify-content:center; } + + .carousel-image{ + width:100%; + max-height:420px; + object-fit:contain; + } + + .carousel-indicators{ + bottom:-40px; + } + + .carousel-indicators button{ + background-color:#0d6efd; + } + + @media (max-width: 768px){ + .carousel-image{ + max-height:300px; + } + } + .carousel-indicators{ + bottom: -50px; + } + + .carousel-indicators button{ + width: 10px !important; + height: 10px !important; + border-radius: 50% !important; + background-color: #adb5bd !important; + border: none !important; + margin: 0 5px !important; + opacity: 1 !important; + } + + .carousel-indicators .active{ + background-color: #212529 !important; + transform: scale(1.2); + }
-