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: 🐛 Responsiveness issues of workbench section #605 #605

Merged
merged 1 commit into from
Mar 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions apps/dev-workbench/workbench.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
.btn {
text-transform: unset !important;
}
.navbar {
padding-left: 20px;
.nabvar {
display: flex;
flex-direction: row;
}
/* All display none */
#importFile,
Expand All @@ -39,7 +40,7 @@

#goBack{
display: flex;
padding :20px;
margin: 0 1rem;
}
@media only screen and (max-width: 551px) {
nav {
Expand Down
12 changes: 6 additions & 6 deletions apps/dev-workbench/workbench.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<body>
<!--Navbar-->
<nav
class="navbar navbar-expand-lg navbar-dark"
class="navbar navbar-expand-lg navbar-dark flex-row px-2"
style="background: rgb(33, 37, 41);"
>
<div style="cursor: pointer;" id="goBack">
Expand All @@ -73,17 +73,17 @@

<!-- Navbar brand -->

<div class="navbar-brand-div">
<span style="cursor: default" class="navbar-brand" > Workbench</span>
<div class="navbar-brand-div flex-grow-1">
<span style="cursor: default" class="navbar-brand " > Workbench</span>

</div>
<div>


<ul class="navbar-nav mr-auto">
<ul class="navbar-nav mr-auto px-2">
<!-- Dropdown -->
<li
style="position: absolute; right: 2em; margin-top: -1.3em;"

class="nav-item dropdown"
>
<a
Expand All @@ -95,7 +95,7 @@
>Options</a
>
<div
style="margin-left: -3em;"
style="margin-left: -5em;"
class="dropdown-menu dropdown-primary"
aria-labelledby="navbarDropdownMenuLink"
>
Expand Down