29 lines
451 B
SCSS
29 lines
451 B
SCSS
@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;
|
|
}
|
|
}
|
|
}
|