Refactor(UrlCard): Optimize UrlCard

This commit is contained in:
2024-04-28 16:14:04 +08:00
parent aa96359f46
commit 340a842b4c
7 changed files with 89 additions and 103 deletions

View File

@@ -0,0 +1,28 @@
@use '@/assets/css/constants' as constants;
[data-component=component-url-card] {
cursor: pointer;
.url-card {
width: 100%;
height: 100%;
margin-top: 80px;
text-align: center;
gap: 42px;
> * {
flex: 0 0 auto;
display: block;
}
.icon {
color: constants.$production-color;
font-size: constants.$SIZE_ICON_XL;
}
.text {
font-weight: bolder;
font-size: 2em;
}
}
}