mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 21:13:32 +00:00
Refactor ServerManagerView and setup layout for PreferenceView.
This commit is contained in:
49
app/renderer/css/preference.css
Normal file
49
app/renderer/css/preference.css
Normal file
@@ -0,0 +1,49 @@
|
||||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
#content {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
font-family: sans-serif;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
width: 80px;
|
||||
padding: 40px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#tabs-container {
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.tab {
|
||||
padding: 5px 0;
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tab.active {
|
||||
color: #464e5a;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.tab.active::before {
|
||||
color: #464e5a;
|
||||
cursor: default;
|
||||
}
|
||||
#settings-header {
|
||||
font-size: 24px;
|
||||
color: #5c6166;
|
||||
}
|
||||
|
||||
.settings-container {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
}
|
||||
Reference in New Issue
Block a user