Procházet zdrojové kódy

Fix profile layout; make container prey names appear in front of the fluid

master
Fen Dweller před 5 roky
rodič
revize
d5b7f227ba
2 změnil soubory, kde provedl 9 přidání a 6 odebrání
  1. +1
    -0
      src/components/ContainerView.vue
  2. +8
    -6
      src/components/Profile.vue

+ 1
- 0
src/components/ContainerView.vue Zobrazit soubor

@@ -128,6 +128,7 @@ export default class ContainerView extends Vue {
top: 25px; top: 25px;
left: 25px; left: 25px;
overflow: hidden; overflow: hidden;
z-index: 1;
} }


.container-prey-live { .container-prey-live {


+ 8
- 6
src/components/Profile.vue Zobrazit soubor

@@ -39,9 +39,9 @@ export default class Explore extends Vue {
position: relative; position: relative;
display: grid; display: grid;
grid-template-areas: grid-template-areas:
"items containers"
"stats containers";
grid-template-rows: 1fr 1fr;
"items stats"
"containers containers";
grid-template-rows: 1fr 0.25fr;
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
width: 100%; width: 100%;
height: 100%; height: 100%;
@@ -52,17 +52,19 @@ export default class Explore extends Vue {


.character-items { .character-items {
background: #222; background: #222;
grid-area: "items";
grid-area: items;
} }


.character-containers { .character-containers {
background: #222; background: #222;
grid-area: "containers"
grid-area: containers;
display: flex;
flex-direction: row;
} }


.character-stats { .character-stats {
background: #111; background: #111;
grid-area: "stats";
grid-area: stats;
} }


.profile-exit { .profile-exit {


Načítá se…
Zrušit
Uložit