mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 14:08:06 +08:00
fix: 修复首页高度对齐问题 (#1708)
#### What this PR does / why we need it? #### Summary of your change #### Please indicate you've done the following: - [ ] Made sure tests are passing and test coverage is added if needed. - [ ] Made sure commit message follow the rule of [Conventional Commits specification](https://www.conventionalcommits.org/). - [ ] Considered the docs impact and opened a new docs issue or PR with docs changes if needed.
This commit is contained in:
parent
aa8816f3ec
commit
c62c19a49e
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<el-scrollbar max-height="500px" class="moz-height">
|
<el-scrollbar height="500px" class="moz-height">
|
||||||
<div class="h-app-card" v-for="(app, index) in apps" :key="index">
|
<div class="h-app-card" v-for="(app, index) in apps" :key="index">
|
||||||
<el-row :gutter="10">
|
<el-row :gutter="10">
|
||||||
<el-col :span="5">
|
<el-col :span="5">
|
||||||
@ -118,6 +118,7 @@ defineExpose({
|
|||||||
border: 0;
|
border: 0;
|
||||||
border-top: var(--panel-border);
|
border-top: var(--panel-border);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FOR MOZILLA */
|
/* FOR MOZILLA */
|
||||||
@-moz-document url-prefix() {
|
@-moz-document url-prefix() {
|
||||||
.moz-height {
|
.moz-height {
|
||||||
|
@ -563,6 +563,12 @@ onBeforeUnmount(() => {
|
|||||||
|
|
||||||
.h-systemInfo {
|
.h-systemInfo {
|
||||||
margin-left: 18px;
|
margin-left: 18px;
|
||||||
|
height: 216px;
|
||||||
|
}
|
||||||
|
@-moz-document url-prefix() {
|
||||||
|
.h-systemInfo {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.system-label {
|
.system-label {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user