Skip to content

Instantly share code, notes, and snippets.

@kevinacuna1
Last active March 4, 2023 16:02
Show Gist options
  • Select an option

  • Save kevinacuna1/1eed902334067f4c026d5d5383bca5de to your computer and use it in GitHub Desktop.

Select an option

Save kevinacuna1/1eed902334067f4c026d5d5383bca5de to your computer and use it in GitHub Desktop.
src/scss/base/
@use 'variables' as v;
@use 'mixins' as m;
html {
font-size: 62.5%;
box-sizing: border-box;
height: 100%;
}
body {
min-height: 100%;
@include m.tablet {
height: 100%;
}
display: flex;
flex-direction: column;
background-color: v.$negro;
color: v.$blanco;
font-family: v.$fuente_principal;
font-size: 1.6rem;
}
*, *:before, *:after {
box-sizing: inherit;
}
.contenedor {
width: 95%;
max-width: 1200px;
margin: 0 auto;
}
a {
text-decoration: none;
}
img {
max-width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment