revert: css files deleted

This commit is contained in:
Mehak Nasir
2021-11-13 01:21:20 +05:00
committed by Mehak Nasir
parent b8f74dd295
commit 85596ba86a
6 changed files with 0 additions and 78 deletions

View File

@@ -1,7 +0,0 @@
.helper-text {
font-size: 1.125rem !important;
}
.z-index-3 {
z-index: 3;
}

View File

@@ -1,9 +0,0 @@
legend {
font-size: 1.0rem;
font-weight: 700;
}
select {
-webkit-appearance: none;
-moz-appearance: none;
}

View File

@@ -1,4 +0,0 @@
.modal-footer {
position: absolute;
width: 100%;
}

View File

@@ -1,9 +0,0 @@
.desktop-card {
width: 19rem;
height: 14rem;
}
.mobile-card {
width: 100%;
height: 14rem;
}

View File

@@ -1,4 +0,0 @@
table {
font-size: 14px;
color: black;
}

View File

@@ -1,45 +0,0 @@
.menu {
position: relative;
}
.menu-content {
position: absolute;
top: 100%;
z-index: 10;
background: #fff;
min-width: 10rem;
}
.menu-content.pin-left {
left: 0;
}
.menu-content.pin-right {
right: 0;
}
.menu-dropdown-enter {
opacity: 0;
transform-origin: 75% 0;
transform: scale3d(0.8, 0.8, 1);
}
.menu-dropdown-enter-active {
transform-origin: 75% 0;
transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
transform: scale3d(1, 1, 1);
opacity: 1;
}
.menu-dropdown-exit {
transform-origin: 75% 0;
transform: scale3d(1, 1, 1);
opacity: 1;
}
.menu-dropdown-exit-active {
transform-origin: 75% 0;
transform: scale3d(0.8, 0.8, 1);
transition: all 250ms cubic-bezier(0.8, 0, 0.6, 1);
opacity: 0;
}