Просмотр исходного кода

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

vintage
Fen Dweller 5 лет назад
Родитель
Сommit
d5b7f227ba
2 измененных файлов: 9 добавлений и 6 удалений
  1. +1
    -0
      src/components/ContainerView.vue
  2. +8
    -6
      src/components/Profile.vue

+ 1
- 0
src/components/ContainerView.vue Просмотреть файл

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

.container-prey-live {


+ 8
- 6
src/components/Profile.vue Просмотреть файл

@@ -39,9 +39,9 @@ export default class Explore extends Vue {
position: relative;
display: grid;
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;
width: 100%;
height: 100%;
@@ -52,17 +52,19 @@ export default class Explore extends Vue {

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

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

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

.profile-exit {


Загрузка…
Отмена
Сохранить