Fix for tooltip border.

This commit is contained in:
Mandar
2021-07-12 15:06:29 +02:00
parent c9f3f1fc3b
commit 11442c0635
2 changed files with 15 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -671,7 +671,7 @@ button {
color: $black-light;
font-size: 0.8rem;
text-align: left;
border: 1px solid #c3a582;
border: 0 none;
border-radius: 0;
padding: 0.5rem 0.75rem;
display: block;
@@ -681,7 +681,7 @@ button {
color: $black-light;
}
&:before {
z-index: -1;
z-index: -2;
content: "";
position: absolute;
height: calc(100% + 0.6rem);
@@ -690,6 +690,18 @@ button {
border-radius: 0;
top: -0.35rem;
left: 0.25rem;
background: #3e3a30 url("../assets/imgs/bg-l5r.webp") no-repeat;
}
&:after {
z-index: -1;
content: "";
position: absolute;
height: calc(100%);
width: calc(100%);
border: 1px solid #c3a582;
border-radius: 0;
top: -1px;
left: -1px;
}
}
.card-header img {