feat: Add notes for Contacts (#3273)

Fixes #2275
This commit is contained in:
Pranav Raj S
2021-10-25 18:35:58 +05:30
committed by GitHub
parent e5e73a08fe
commit 8e6ce3a813
29 changed files with 416 additions and 278 deletions

View File

@@ -1,3 +1,44 @@
.margin-right-small {
margin-right: var(--space-small);
}
.fs-small {
font-size: var(--font-size-small);
}
.fs-default {
font-size: var(--font-size-default);
}
.fw-medium {
font-weight: var(--font-weight-medium);
}
.p-normal {
padding: var(--space-normal);
}
.overflow-scroll {
overflow: scroll;
}
.overflow-auto {
overflow: auto;
}
.overflow-hidden {
overflow: hidden;
}
.border-right {
border-right: 1px solid var(--color-border);
}
.border-left {
border-left: 1px solid var(--color-border);
}
.bg-white {
background-color: var(--white);
}