Skip to content

Instantly share code, notes, and snippets.

View quietcactus's full-sized avatar

Ian Garcia quietcactus

View GitHub Profile
@quietcactus
quietcactus / swiper-pause-button.css
Created May 17, 2024 17:51
Swiper - Custom Pause / Play Button
.play-pause-btn {
position: absolute;
bottom: 15px;
right: 15px;
width: 25px;
height: 25px;
display: -webkit-flex;
display: -moz-flex;
display: -o-flex;
display: flex;
@quietcactus
quietcactus / unlighthouse.config.ts
Created August 22, 2023 18:29
unlighthouse config file
/**
* All config options can be found here
* https://unlighthouse.dev/api/config/
*/
export default {
// set site url
site: '',
// set max routes / pages
scanner: {
maxRoutes: 500,
@quietcactus
quietcactus / utility-classes.css
Last active December 13, 2024 19:28
Utility Classes
*:focus-visible {
outline: auto;
}
img {
height: auto;
max-width: 100%;
display: block;
}