Skip to content

Instantly share code, notes, and snippets.

View surajbera's full-sized avatar

Suraj S. Bera surajbera

  • Mumbai
  • 17:52 (UTC -12:00)
View GitHub Profile
@surajbera
surajbera / grids.scss
Last active December 5, 2024 02:55
Grid Layout CSS
$gutter-vertical: 30px; // Adjust the value as needed for your design
$gutter-horizontal: 30px; // Adjust the value as needed for your design
@mixin clearfix {
&::after {
content: "";
display: table;
clear: both;
}
}