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

feat(header): remove tagtext from header #1137

Merged
merged 3 commits into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 2 additions & 1 deletion next-tavla/src/Admin/scenarios/Edit/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
display: flex;
flex-direction: column;
gap: 10px;
margin: 1.25em 5em;
margin-top: 1.25em;
margin-bottom: 1.25em;
stianjsu marked this conversation as resolved.
Show resolved Hide resolved
}

.floatingButtonWrapper {
Expand Down
3 changes: 0 additions & 3 deletions next-tavla/src/Shared/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ function Header({ theme, showClock }: { theme?: TTheme; showClock?: boolean }) {
className={classes.logo}
/>
)}
<p className={classes.tagText}>
Finn din rute på entur.no eller i Entur-appen
</p>
</div>
{showClock && <Clock />}
</div>
Expand Down
2 changes: 2 additions & 0 deletions next-tavla/src/Shared/styles/pages/admin.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.root {
padding: 1em;
margin-left: 5em;
margin-right: 5em;
}