Compare commits

..

No commits in common. "b26e199d94b3f5906bfc5ea9d20df2035c91eb4b" and "44d48916bab0c1e0a2bf61280c14d43b9b6f43e1" have entirely different histories.

6 changed files with 10 additions and 42 deletions

View File

@ -152,18 +152,18 @@ export default {
}
.sidebar {
background: $profile;
height: 100%;
width: 18rem;
display: flex;
flex-direction: column;
flex-shrink: 0;
border-right: solid 1px $shadow-hint;
color: $text-contrast;
overflow: hidden;
}
.sidebar .title {
border-bottom: solid 1px $highlight-hint;
border-bottom: solid 1px $shadow-hint;
}
.logo {
@ -189,14 +189,10 @@ export default {
.sites.compact {
display: none;
background: $profile;
grid-row: 1;
}
.expand {
display: none;
color: $text-contrast;
background: $profile;
padding: .5rem;
text-align: center;
cursor: pointer;

View File

@ -1,18 +1,5 @@
<template>
<ul class="nolist sites">
<a
v-if="network"
:href="network.url"
target="_blank"
rel="noopener noreferrer"
class="tile"
>
<img
:src="`/img/logos/${network.slug}/network.png`"
class="logo"
>
</a>
<li
v-for="site in sites"
:key="`site-${site.id}`"
@ -30,10 +17,6 @@ export default {
SiteTile,
},
props: {
network: {
type: Object,
default: null,
},
sites: {
type: Array,
default: () => [],
@ -66,8 +49,4 @@ export default {
grid-template-columns: repeat(2, .5fr);
}
}
.logo {
width: 15rem;
}
</style>

View File

@ -4,11 +4,11 @@
:title="network.name"
class="tile"
>
<img
:src="`/img/logos/${network.slug}/network.png`"
:alt="network.name"
<object
:data="`/img/logos/${network.slug}/network.png`"
type="image/png"
class="logo"
>
>{{ network.name }}</object>
</a>
</template>

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.44.3",
"version": "1.44.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.44.3",
"version": "1.44.2",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -636,9 +636,6 @@
.sites.expanded[data-v-7bebaa3e] {
grid-template-columns: repeat(2, 0.5fr);
}
.logo[data-v-7bebaa3e] {
width: 15rem;
}
/* $primary: #ff886c; */
@media (max-width: 1200px) {
@ -667,7 +664,6 @@
padding: 1rem;
}
.sidebar[data-v-e2e12602] {
background: #222;
height: 100%;
width: 18rem;
display: -webkit-box;
@ -676,11 +672,12 @@
-webkit-box-direction: normal;
flex-direction: column;
flex-shrink: 0;
border-right: solid 1px rgba(0, 0, 0, 0.1);
color: #fff;
overflow: hidden;
}
.sidebar .title[data-v-e2e12602] {
border-bottom: solid 1px rgba(255, 255, 255, 0.075);
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.logo[data-v-e2e12602] {
width: 100%;
@ -708,13 +705,9 @@
}
.sites.compact[data-v-e2e12602] {
display: none;
background: #222;
grid-row: 1;
}
.expand[data-v-e2e12602] {
display: none;
color: #fff;
background: #222;
padding: .5rem;
text-align: center;
cursor: pointer;