mirror of
https://github.com/thepaperpilot/Super-Auto-Coots.git
synced 2024-11-25 01:41:46 +00:00
Shop cat
This commit is contained in:
parent
41fdc6ff36
commit
ede8f12e74
4 changed files with 19 additions and 1 deletions
|
@ -35,6 +35,8 @@
|
||||||
<link rel="prefetch" href="game window.png" />
|
<link rel="prefetch" href="game window.png" />
|
||||||
<link rel="prefetch" href="cat.png" />
|
<link rel="prefetch" href="cat.png" />
|
||||||
<link rel="prefetch" href="Shadow.png" />
|
<link rel="prefetch" href="Shadow.png" />
|
||||||
|
<link rel="prefetch" href="shop window.png" />
|
||||||
|
<link rel="prefetch" href="shop cat.png" />
|
||||||
|
|
||||||
<title>Profectus</title>
|
<title>Profectus</title>
|
||||||
<meta name="description" content="A project made in Profectus"/>
|
<meta name="description" content="A project made in Profectus"/>
|
||||||
|
|
BIN
public/shop cat.png
Normal file
BIN
public/shop cat.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
|
@ -61,6 +61,7 @@
|
||||||
.manager-header .button {
|
.manager-header .button {
|
||||||
font-size: 4vmin;
|
font-size: 4vmin;
|
||||||
padding: 2vmin;
|
padding: 2vmin;
|
||||||
|
height: 8vmin;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modifier-toggle {
|
.modifier-toggle {
|
||||||
|
@ -100,6 +101,7 @@
|
||||||
|
|
||||||
.shop {
|
.shop {
|
||||||
margin-top: 10vh !important;
|
margin-top: 10vh !important;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shop .row {
|
.shop .row {
|
||||||
|
@ -112,6 +114,20 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shop .row::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
height: 5vmin;
|
||||||
|
aspect-ratio: 516/102;
|
||||||
|
background-size: contain;
|
||||||
|
background-image: url("./shop cat.png");
|
||||||
|
z-index: 3;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
.reroll {
|
.reroll {
|
||||||
margin-left: -19vmin !important;
|
margin-left: -19vmin !important;
|
||||||
margin-top: -1vmin !important;
|
margin-top: -1vmin !important;
|
||||||
|
|
|
@ -134,7 +134,7 @@ export default defineComponent({
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background-color: var(--tooltip-background);
|
background-color: var(--tooltip-background);
|
||||||
color: var(--background);
|
color: var(--background);
|
||||||
z-index: 100 !important;
|
z-index: 1000 !important;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue