mirror of
https://github.com/status-im/dappconnect-chat-sdk.git
synced 2025-01-12 15:04:52 +00:00
8a47bb4b02
* feat: add chart to website WIP * fix: minor improvements * feat: add animation to areas on load * feat: adds animation to rest of the chart elements * feat: refact chart component * feat: add loading state to chart component * feat: add empty state and fixed some issues * Set up website deployment (#391) * env * vercel.json * turbo * u * root * cwd * use cwd option (#393) * fix: remove border width from progress bar * fix: changes from review * fix: removes spacing with first tick in X Axis component * update assertion --------- Co-authored-by: Felicio Mununga <felicio@users.noreply.github.com> Co-authored-by: Pavel Prichodko <14926950+prichodko@users.noreply.github.com>
82 lines
1.1 KiB
CSS
82 lines
1.1 KiB
CSS
:root {
|
|
--topbar-height: 56px;
|
|
--composer-height: 100px;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
overscroll-behavior: none;
|
|
user-select: none;
|
|
}
|
|
|
|
*::selection {
|
|
color: #fff;
|
|
background: hsla(229, 71%, 57%, 1);
|
|
}
|
|
|
|
#app {
|
|
isolation: isolate;
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template-columns: 352px 1fr auto;
|
|
}
|
|
|
|
#sidebar-community {
|
|
overflow: auto;
|
|
height: 100vh;
|
|
}
|
|
|
|
#sidebar-members {
|
|
width: 352px;
|
|
overflow: auto;
|
|
background-color: #fff;
|
|
z-index: 2;
|
|
}
|
|
|
|
#main {
|
|
position: relative;
|
|
}
|
|
|
|
#topbar {
|
|
position: absolute;
|
|
inset: 0 0 auto;
|
|
z-index: 100;
|
|
}
|
|
|
|
#content {
|
|
position: relative;
|
|
overflow: auto;
|
|
padding-top: var(--topbar-height);
|
|
padding-bottom: var(--composer-height);
|
|
height: 100vh;
|
|
isolation: isolate;
|
|
}
|
|
|
|
#messages {
|
|
padding: 8px;
|
|
}
|
|
|
|
#anchor-actions {
|
|
position: absolute;
|
|
right: 20px;
|
|
transform: translateY(calc(-100% - 12px));
|
|
}
|
|
|
|
#composer {
|
|
position: absolute;
|
|
inset: auto 0 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
#app {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
#sidebar {
|
|
display: none;
|
|
}
|
|
}
|