瀏覽代碼

Adjust admin UI right panel size (#9768)

* Adjust admin UI right panel size

* Fix typo
master
Jeong Arm 5 年之前
committed by Eugen Rochko
父節點
當前提交
9ee9cb549b
共有 1 個文件被更改,包括 6 次插入4 次删除
  1. +6
    -4
      app/javascript/styles/mastodon/admin.scss

+ 6
- 4
app/javascript/styles/mastodon/admin.scss 查看文件

@@ -1,4 +1,6 @@
$no-columns-breakpoint: 600px;
$sidebar-width: 240px;
$content-width: 840px;

.admin-wrapper {
display: flex;
@@ -6,7 +8,7 @@ $no-columns-breakpoint: 600px;
height: 100%;

.sidebar-wrapper {
flex: 1;
flex: 1 1 $sidebar-width;
height: 100%;
background: $ui-base-color;
display: flex;
@@ -14,7 +16,7 @@ $no-columns-breakpoint: 600px;
}

.sidebar {
width: 240px;
width: $sidebar-width;
height: 100%;
padding: 0;
overflow-y: auto;
@@ -95,12 +97,12 @@ $no-columns-breakpoint: 600px;
}

.content-wrapper {
flex: 2;
flex: 2 1 $content-width;
overflow: auto;
}

.content {
max-width: 700px;
max-width: $content-width;
padding: 20px 15px;
padding-top: 60px;
padding-left: 25px;


Loading…
取消
儲存