Skip to content

Commit

Permalink
fix grid row overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jpstroop committed May 20, 2020
1 parent 4ab0327 commit c4feed2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div id="app">
<h1>Storage Finder</h1>
<div class="small-container">
<div class="container-fluid">
<div class="row">
<feature-categories :categories="categories" :features="features" />
<option-list :options="options" />
Expand Down
7 changes: 4 additions & 3 deletions src/components/OptionList.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<ul id="option-list" class="col-sm-7">
<ul id="option-list" class="col-sm-8">
<b-collapse v-for="option in options"
tag="li" :visible="true"
:key="option.id" :id="option.id"
Expand Down Expand Up @@ -75,11 +75,12 @@ h2 {
.option {
/* This plus option-wrapper below keeps jQuery animations smooth */
padding: 0;
border-bottom: 1px solid rgba(0,0,0,.125);
}
.option-wrapper {
padding: 1rem .5rem;
padding: 1rem 0;
margin: 0 1rem;
border-bottom: 1px solid rgba(0,0,0,.125);
}
.option-features {
Expand Down

0 comments on commit c4feed2

Please sign in to comment.