Kaynağa Gözat

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

vintage
Fen Dweller 5 yıl önce
ebeveyn
işleme
d5b7f227ba
2 değiştirilmiş dosya ile 9 ekleme ve 6 silme
  1. +1
    -0
      src/components/ContainerView.vue
  2. +8
    -6
      src/components/Profile.vue

+ 1
- 0
src/components/ContainerView.vue Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

@@ -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 {


Yükleniyor…
İptal
Kaydet