Make clone button work on new repo page

1c069eb8308b92aa8ddd6233b047714e9e77ed1e

Tucker McKnight <tucker@pangolin.lan> | Tue Dec 09 2025

Make clone button work on new repo page

Also tweak styling of top nav
js_templates/repo.ts:119
Before
118
119
120
121
122
123
                      </div>
                      <div class="row flex-grow-1 align-items-center">
                        <div class="col-md col-fluid py-3">
                          <button class="w-100 btn btn-info btn-lg">Clone</button>
                        </div>
                        <div class="col-md col-fluid py-3">
                          <button class="w-100 btn btn-outline-info shadow-none btn-lg">Setup Instructions</button>
After
118
119
120
121
122
123
                      </div>
                      <div class="row flex-grow-1 align-items-center">
                        <div class="col-md col-fluid py-3">
                          <button class="w-100 btn btn-info btn-lg" id="clone-popover-btn">Clone</button>
                        </div>
                        <div class="col-md col-fluid py-3">
                          <button class="w-100 btn btn-outline-info shadow-none btn-lg">Setup Instructions</button>
scss/design-board.scss:106
Before
105
106
107

108
109
110
111
112
113
114
}
.nav-item a {
  color: $blue;
⁣
}

.navbar-nav .nav-link.active {
  background-color: $blue;
  color: white;
}

.sample-bullet {
After
105
106
107
108
109
110
111
112
113
114
115
}
.nav-item a {
  color: $blue;
  padding-bottom: 4px;
}

.navbar-nav .nav-link.active {
  color: $blue;
  border-bottom: 2px solid $blue;
}

.sample-bullet {
scss/design-board.scss:139
Before
138
139








.branches, .branches:hover {
  border: 1px solid $body-color;
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
}
After
138
139
140
141
142
143
144
145
146
147
148
.branches, .branches:hover {
  border: 1px solid $body-color;
}

.dropdown-branches {
  list-style: none;
  padding: 0;
}

.popover {
  max-width: 100%;
}