Skip to content

Commit

Permalink
Fix resiz(e)able typo in ResourceTiles
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalwengerter committed Feb 6, 2023
1 parent 385dada commit fb42ba4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<oc-list class="oc-tiles oc-flex" :class="resizable ? 'resizeableTiles' : ''">
<oc-list class="oc-tiles oc-flex" :class="resizable ? 'resizableTiles' : ''">
<li v-for="(resource, index) in data" :key="resource.id" class="oc-tiles-item">
<oc-tile
:ref="
Expand Down Expand Up @@ -214,7 +214,7 @@ export default defineComponent({
justify-content: flex-start;
row-gap: 1rem;
&.resizeableTiles {
&.resizableTiles {
grid-template-columns: repeat(auto-fill, var(--oc-size-tiles-resize-step));
}
Expand All @@ -223,7 +223,7 @@ export default defineComponent({
justify-content: center;
padding: var(--oc-space-medium) 0;
&.resizeableTiles {
&.resizableTiles {
grid-template-columns: 80%;
}
}
Expand Down

0 comments on commit fb42ba4

Please sign in to comment.