Commit 04143737 authored by Ben Mullins's avatar Ben Mullins Committed by Tim Plunkett
Browse files

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

parent fd21256f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -36,7 +36,6 @@
    "svelte": "^3.0.0"
  },
  "dependencies": {
    "sirv-cli": "^1.0.0",
    "svelte-split-pane": "^0.1.2"
    "sirv-cli": "^1.0.0"
  }
}
+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.

+11 −6
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: 600px) {
  @media only screen and (min-width: 53.75rem) {
    .top {
      overflow: hidden;
      display: flex;
@@ -40,22 +40,27 @@
    }
  }

  /* Large devices (laptops/desktops, 992px and up) */
  @media only screen and (min-width: 992px) {
  /*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) {
    .project {
      width: 49%;
    }
  }

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

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