Refactor styles to use 'background' shorthand property instead of 'background-color' for consistency across components. Updated various components including confirmation pop-up, input fields, lists, marketplace, menu, module toggle, simulation, and more. Enhanced visual effects with backdrop filters and adjusted padding/margins for improved layout. Removed unnecessary styles and optimized hover effects for better user experience.

This commit is contained in:
2025-04-29 16:27:03 +05:30
parent 77a6dda068
commit 45fea9465e
37 changed files with 491 additions and 525 deletions

View File

@@ -30,8 +30,6 @@
}
.list-wrapper {
.no-item {
padding: 12px;
}
@@ -41,7 +39,6 @@
// margin-left: 10px;
overflow: hidden;
.list-item {
@include flex-space-between;
width: 100%;
@@ -67,7 +64,7 @@
}
.active {
background-color: var(--highlight-accent-color);
background: var(--highlight-accent-color);
color: var(--primary-color);
}
}
@@ -75,7 +72,6 @@
.asset-list {
border-left: 2px solid var(--border-color);
margin-left: 20px
margin-left: 20px;
}
}
}