Skip to content

Commit

Permalink
tweak spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
viperML committed Jul 9, 2024
1 parent 4314262 commit 05eca6e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/components/Profile.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const iconLinkedin = icon(faLinkedin).html;
</div>
<div id="bento-info" class="card">
<span>
<h2>Hello! I am Fernando Ayats</h2>
<p class="mt-2">
<h2>Hello! I am Fernando <span class="bento-extra">Ayats</span></h2>
<p class="mt-1">
This is my personal website, where I write some blog posts. I
mainly write about Linux-related topics, specially NixOS and
Rust.
Expand Down Expand Up @@ -86,4 +86,12 @@ const iconLinkedin = icon(faLinkedin).html;
align-self: center;
justify-self: center;
}

.bento-extra {
display: none;

@media (min-width:600px) {
display: initial;
}
}
</style>

0 comments on commit 05eca6e

Please sign in to comment.