Skip to content

Commit

Permalink
fix(ui): new team form missing borders
Browse files Browse the repository at this point in the history
  • Loading branch information
leg100 committed Jul 24, 2023
1 parent d67de76 commit 0506694
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
12 changes: 0 additions & 12 deletions internal/http/html/static/css/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -729,14 +729,6 @@ select {
position: relative;
}

.sticky {
position: sticky;
}

.bottom-0 {
bottom: 0px;
}

.m-0 {
margin: 0px;
}
Expand Down Expand Up @@ -1127,10 +1119,6 @@ select {
padding-left: 2.5rem;
}

.pb-4 {
padding-bottom: 1rem;
}

.text-left {
text-align: left;
}
Expand Down
4 changes: 2 additions & 2 deletions internal/http/html/static/templates/content/team_new.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
{{ end }}

{{ define "content" }}
<form class="main-form" action="{{ createTeamPath .Organization }}" method="POST">
<form class="flex flex-col gap-2" action="{{ createTeamPath .Organization }}" method="POST">
<div class="field">
<label for="name">Name</label>
<input type="text" name="name" id="name" required>
<input class="text-input w-80" type="text" name="name" id="name" required>
</div>
<div>
<button class="btn" id="create-team-button">Create team</button>
Expand Down

0 comments on commit 0506694

Please sign in to comment.