!1780 feat(#I47PG2): scroll component support FireFox browser

* style: 侧边栏增加对火狐浏览器支持
* feat: Scroll 滚动条组件增加对 Firefox 浏览器支持
This commit is contained in:
Argo 2021-08-29 17:28:09 +00:00
parent f9c454946a
commit 30d6c9a6f5
3 changed files with 24 additions and 18 deletions

View File

@ -80,27 +80,31 @@ section {
-webkit-font-smoothing: antialiased;
}
.sidebar .navbar-brand {
font-size: 1.1rem;
.sidebar {
overflow-x: hidden !important;
}
.sidebar .nav-item {
font-size: 0.875rem;
padding-left: 6px;
}
.sidebar .nav-item a {
color: #444;
border-radius: 4px;
display: flex;
align-items: center;
padding: .25rem 1.5rem;
font-weight: 400;
.sidebar .navbar-brand {
font-size: 1.1rem;
}
.sidebar .navbar {
background-color: rgb(60, 40, 97);
}
.sidebar .nav-item {
font-size: 0.875rem;
padding-left: 6px;
}
.sidebar .nav-item a {
color: #444;
border-radius: 4px;
display: flex;
align-items: center;
padding: .25rem 1.5rem;
font-weight: 400;
}
.sidebar .navbar {
background-color: rgb(60, 40, 97);
}
.tabs-body-content > h2,
.content > h2,

View File

@ -2,6 +2,8 @@
.scroll {
height: 100%;
overflow: hidden;
scrollbar-color: rgba(0,0,0,0.3) rgba(0,0,0,0);
scrollbar-width: thin;
}
.scroll:hover {

File diff suppressed because one or more lines are too long