Skip to content

Instantly share code, notes, and snippets.

@glaucia86
Last active May 27, 2019 01:06
Show Gist options
  • Save glaucia86/175268bf4248f29e83d7f11cda3c3c74 to your computer and use it in GitHub Desktop.
Save glaucia86/175268bf4248f29e83d7f11cda3c3c74 to your computer and use it in GitHub Desktop.
<template>
<div class="calculadora">
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
<div>teste</div>
</div>
</template>
<script>
export default {
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.calculadora {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: minmax(50px, auto);
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment