Follows + Reports

This commit is contained in:
Jai A
2021-03-11 18:14:11 -07:00
parent 2bf08787d8
commit 98df1f5312
17 changed files with 17166 additions and 57 deletions

View File

@@ -0,0 +1,3 @@
<svg fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>

After

Width:  |  Height:  |  Size: 270 B

View File

@@ -15,6 +15,27 @@
}
}
.iconified-button {
padding: 0.25rem 0.5rem;
font-size: var(--font-size-sm);
display: flex;
align-items: center;
color: var(--color-button-text);
background-color: var(--color-button-bg);
border-radius: var(--size-rounded-control);
&:hover,
&:focus {
background-color: var(--color-button-bg-hover);
}
svg {
width: 1.25rem;
margin-right: 0.5rem;
}
}
.badge {
max-height: 1rem;
border-radius: 1rem;

View File

@@ -287,4 +287,3 @@ button {
@import "~assets/styles/utils.scss";
@import "~assets/styles/components.scss";
@import "~assets/styles/normalize.scss";

View File

@@ -6,4 +6,6 @@
width: 100%;
}
html { margin-left: calc(100vw - 100%); }
html {
overflow-y: scroll;
}