Compare commits

...

2 Commits

Author SHA1 Message Date
ThePendulum 2f4a227437 1.47.7 2020-01-09 02:13:40 +01:00
ThePendulum edaf659bf8 Fixed network site list overflow. 2020-01-09 02:13:37 +01:00
4 changed files with 15 additions and 5 deletions

View File

@ -52,7 +52,10 @@ export default {
display: flex;
&.compact:not(.expanded) {
flex-direction: row;
.tiles {
display: flex;
overflow-x: auto;
}

2
package-lock.json generated
View File

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

View File

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

View File

@ -650,12 +650,19 @@
display: -webkit-box;
display: flex;
}
.sites.compact[data-v-7bebaa3e]:not(.expanded) {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
}
.sites.compact:not(.expanded) .tiles[data-v-7bebaa3e] {
overflow-x: auto;
display: -webkit-box;
display: flex;
overflow-x: auto;
}
.sites.compact:not(.expanded) .tile[data-v-7bebaa3e] {
width: 15rem;
margin: 0 1rem 0 0;
width: 15rem;
margin: 0 1rem 0 0;
}
.sites.expanded .tiles[data-v-7bebaa3e] {
grid-template-columns: repeat(2, 0.5fr);