瀏覽代碼

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

master
Fen Dweller 5 年之前
父節點
當前提交
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 {


Loading…
取消
儲存