Change breakpoints to keep header in two columns more of the time

b41ce67af6ee9ef98e0ad56316f00a384f2a2daa

Tucker McKnight <tmcknight@instructure.com> | Wed Feb 11 2026

Change breakpoints to keep header in two columns more of the time
js_templates/common/htmlPage.ts:42
Before
42
          <div class="container">
After
42
          <div class="container-fluid container-lg">
js_templates/file.ts:23
Before
23
24
25
26
    m('div', {class: "directory-buttons row my-2"},
          m('span', {class: "bezel-gray p-1"},
              return m('span', {class: "px-2"}, dir)
              return m('span', {class: "bezel-gray p-1"}, [
After
23
24
25
26
    m('div', {class: "directory-buttons row"},
          m('span', {class: "bezel-gray p-1 my-1 d-inline-block"},
              return m('span', {class: "px-2 my-1 d-inline-block"}, dir)
              return m('span', {class: "bezel-gray p-1 my-1 d-inline-block"}, [
js_templates/repo.ts:50
Before
50
            m('div', {class: "col-12 col-xl-6"}, [
After
50
            m('div', {class: "col-12 col-lg-6"}, [
js_templates/repo.ts:58
Before
58
            m('div', {class: "col-12 col-xl-6 d-flex flex-column justify-content-around"}, [
After
58
            m('div', {class: "col-12 col-lg-6 d-flex flex-column justify-content-around"}, [