Merge branch 'web-ui-improvement' into refactor-main

This commit is contained in:
ckt1031 2023-07-31 21:51:04 +08:00
commit 64d4d33092
2 changed files with 35 additions and 16 deletions

View File

@ -1,35 +1,54 @@
body { body {
margin: 0; margin: 0;
padding-top: 55px; padding-top: 55px;
overflow-y: scroll; overflow-y: scroll;
font-family: Lato, 'Helvetica Neue', Arial, Helvetica, "Microsoft YaHei", sans-serif; font-family: Lato, 'Helvetica Neue', Arial, Helvetica, 'Microsoft YaHei',
-webkit-font-smoothing: antialiased; sans-serif;
-moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased;
scrollbar-width: none; -moz-osx-font-smoothing: grayscale;
scrollbar-width: none;
} }
body::-webkit-scrollbar { body::-webkit-scrollbar {
display: none; display: none;
} }
code { code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
} }
.main-content { .main-content {
padding: 4px; padding: 4px;
} }
.small-icon .icon { .small-icon .icon {
font-size: 1em !important; font-size: 1em !important;
} }
.custom-footer { .custom-footer {
font-size: 1.1em; font-size: 1.1em;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.hide-on-mobile { .hide-on-mobile {
display: none !important; display: none !important;
} }
}
.scrollable-tabs .menu {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}
.scrollable-tabs .menu .item {
white-space: nowrap;
flex: 0 0 auto;
}
.scrollable-tabs .menu .item.active {
border-bottom: none;
} }

View File

@ -47,7 +47,7 @@ const Setting = () => {
return ( return (
<Segment> <Segment>
<Tab menu={{ secondary: true, pointing: true }} panes={panes} /> <Tab menu={{ secondary: true, pointing: true }} panes={panes} className="scrollable-tabs" />
</Segment> </Segment>
); );
}; };