Commit 228ed74a authored by Tim Plunkett's avatar Tim Plunkett
Browse files

Revert "Issue #3280706 by hooroomoo, bnjmnm: Remove svelte-split-pane, replace with custom CSS"

This reverts commit 04143737.
parent 04143737
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@
    "svelte": "^3.0.0"
  },
  "dependencies": {
    "sirv-cli": "^1.0.0"
    "sirv-cli": "^1.0.0",
    "svelte-split-pane": "^0.1.2"
  }
}
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+6 −11
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@

<style>
  /* Small devices (portrait tablets and large phones, 600px and up) */
  @media only screen and (min-width: 53.75rem) {
  @media only screen and (min-width: 600px) {
    .top {
      overflow: hidden;
      display: flex;
@@ -40,27 +40,22 @@
    }
  }

  /*One column card view */
  @media screen and (max-width: 75rem) {
    .project {
      width: 100%;
    }
  }

  /*Two column card view (laptops/desktops, 1200px and up) */
  @media only screen and (min-width: 75rem) {
  /* Large devices (laptops/desktops, 992px and up) */
  @media only screen and (min-width: 992px) {
    .project {
      width: 49%;
    }
  }

  @media only screen and (min-width: 87.5rem) {
  /* Large devices (laptops/desktops, 992px and up) */
  @media only screen and (min-width: 1200px) {
    .project {
      width: 32%;
    }
  }

  .project {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    margin-bottom: 2em;
Loading