Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(addon-mobile): remove shadow background in mobile calendar header #5326

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
splincode marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -70,41 +70,26 @@
}

.t-label {
.text-overflow-with-fade();
flex-grow: 1;
margin: 0;
font-size: 1.25rem;
line-height: 3.5rem;
font-weight: 500;
letter-spacing: -0.0125rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

& + .t-link {
padding-left: 1rem;
}

:host._ios & {
font-size: 1.0625rem;
font-weight: 600;
letter-spacing: -0.025625rem;
text-align: center;
}

&:after {
background-image: linear-gradient(
to right,
// --tui-base-01 in rgb
rgba(255, 255, 255, 0) 0%,
var(--tui-base-01) 80%,
var(--tui-base-01) 100%
);
}

:host-context([data-mode='onDark']) &:after {
background-image: linear-gradient(
to right,
// --tui-base-01 in rgb
rgba(34, 34, 34, 0) 0%,
var(--tui-base-01) 80%,
var(--tui-base-01) 100%
);
}
}

.t-years {
Expand Down