inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
/**=====================
Error CSS start
==========================**/
.box-wrapper {
position: relative;
}
.error-box {
border: 1px solid $secondary-color;
padding: calc(15px + (40 - 15) * ((100vw - 320px) / (1920 - 320)));
background-color: $white;
border-radius: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
display: flex;
align-items: center;
gap: 15px;
box-shadow: $card-box-shadow;
position: absolute;
width: 100%;
transform: translateY(-100%);
top: -138px;
svg {
width: 40px;
height: 40px;
fill: $secondary-color;
}
h4 {
font-size: 18px;
color: $secondary-color;
}
p {
font-size: 14px;
margin-bottom: 0;
color: $title-color;
line-height: 1;
margin-top: 5px;
}
}