This commit is contained in:
Rave | 図書館猫 2022-03-31 11:19:32 +02:00 committed by GitHub
parent e9e232f008
commit 2c6fb66206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 30 additions and 10 deletions

View file

@ -205,7 +205,6 @@ export default function LivestreamSetupPage(props: Props) {
icon={ICONS.FINANCE} icon={ICONS.FINANCE}
navigate={`/$/${PAGES.ODYSEE_MEMBERSHIP}`} navigate={`/$/${PAGES.ODYSEE_MEMBERSHIP}`}
className="membership_button" className="membership_button"
style={{ maxWidth: '238px' }}
/> />
</div> </div>
)} )}

View file

@ -885,14 +885,18 @@
.media__thumb { .media__thumb {
overflow: hidden; overflow: hidden;
}
// Hover Zoom Effect
.media__thumb {
background-size: 100%; background-size: 100%;
transition: background-size 0.2s ease-in-out; transition: background-size 0.2s ease-in-out;
} }
.channel-name {
p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.claim-tile__title { .claim-tile__title {
.claim__menu-button { .claim__menu-button {
right: calc(var(--spacing-xs) * -1); right: calc(var(--spacing-xs) * -1);

View file

@ -3,6 +3,6 @@
height: 16px; height: 16px;
width: 16px; width: 16px;
margin-right: -5px; margin-right: -5px;
margin-top: 4px; // margin-top: 4px;
} }
} }

View file

@ -2,7 +2,7 @@
border: 1px solid var(--color-input-border); border: 1px solid var(--color-input-border);
border-bottom-left-radius: var(--border-radius); border-bottom-left-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius); border-bottom-right-radius: var(--border-radius);
background: var(--color-input-bg); background: rgba(var(--color-header-background-base), 1);
color: var(--color-input); color: var(--color-input);
.CodeMirror-placeholder { .CodeMirror-placeholder {

View file

@ -304,5 +304,5 @@
} }
.editor-preview { .editor-preview {
background-color: var(--color-input-bg); background-color: rgba(var(--color-header-background-base), 1);
} }

View file

@ -49,6 +49,10 @@
height: 24px; height: 24px;
width: 24px; width: 24px;
} }
.icon--ChevronUp {
margin-top: -2px;
margin-bottom: 2px;
}
.card__main-actions { .card__main-actions {
margin-bottom: 15px; margin-bottom: 15px;
@ -56,7 +60,7 @@
.button--close { .button--close {
margin-top: 3px; margin-top: 3px;
left: 223px; // left: 223px;
width: 34px; width: 34px;
} }

View file

@ -48,4 +48,12 @@
@media (min-width: $breakpoint-small) { @media (min-width: $breakpoint-small) {
width: 12.5rem; width: 12.5rem;
} }
.nudge__text {
display: -webkit-box;
max-width: 200px;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
}
} }

View file

@ -42,8 +42,9 @@
} }
> a { > a {
display: block; display: inline-block;
height: 100%; height: 100%;
margin-top: 1px;
} }
@media (max-width: $breakpoint-small) { @media (max-width: $breakpoint-small) {
@ -68,6 +69,10 @@
padding-top: var(--spacing-s); padding-top: var(--spacing-s);
background-color: var(--color-header-background); background-color: var(--color-header-background);
margin-bottom: 0px !important; margin-bottom: 0px !important;
@media (max-width: $breakpoint-small) {
line-height: 0.6;
}
} }
.pagination__item--selected { .pagination__item--selected {