This commit is contained in:
Viet An
2026-06-11 22:08:17 +07:00
parent a1450c7bde
commit a4f71ddb90
7 changed files with 74 additions and 47 deletions

View File

@@ -5,6 +5,14 @@
font-size: 15px;
}
#__nuxt {
// like Bulma's .container
max-width: 1900px;
margin: 0 auto;
position: relative;
width: 100%;
}
// Tooltip Styles
.tooltiptext {
opacity: 0;
@@ -22,20 +30,9 @@
box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
}
.to-left {
right: 30px;
}
@mixin tooltipshow() {
.control:hover .tooltiptext {
opacity: 1;
position: absolute;
min-width: 300px;
z-index: 999;
}
.control:hover .tooltiptext {
@include tooltipshow();
}
.control:hover .tooltiptext .to-left {
@include tooltipshow();
}