From 1d1ac4b04a9465935cba0031a5018a1f47a58c7e Mon Sep 17 00:00:00 2001 From: Sercan Yemen Date: Tue, 17 Jul 2018 15:14:19 +0300 Subject: [PATCH] (Helpers) Comment styles --- src/@fuse/scss/partials/_helpers.scss | 42 +++++++++++++-------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/src/@fuse/scss/partials/_helpers.scss b/src/@fuse/scss/partials/_helpers.scss index 1ca0e9e2..8594849f 100644 --- a/src/@fuse/scss/partials/_helpers.scss +++ b/src/@fuse/scss/partials/_helpers.scss @@ -1,6 +1,6 @@ -// ###################### -// POSITION HELPERS -// ###################### +// ----------------------------------------------------------------------------------------------------- +// @ Position helpers +// ----------------------------------------------------------------------------------------------------- @each $breakpoint in map-keys($grid-breakpoints) { @include media-breakpoint-up($breakpoint) { @@ -21,9 +21,9 @@ } } -// #################################### -// ABSOLUTE POSITION ALIGNMENT HELPERS -// #################################### +// ----------------------------------------------------------------------------------------------------- +// @ Absolute position alignment helpers +// ----------------------------------------------------------------------------------------------------- @each $breakpoint in map-keys($grid-breakpoints) { @include media-breakpoint-up($breakpoint) { @@ -48,9 +48,9 @@ } } -// ###################### -// SIZE HELPERS -// ###################### +// ----------------------------------------------------------------------------------------------------- +// @ Size helpers +// ----------------------------------------------------------------------------------------------------- @each $prop, $abbrev in (height: h, width: w) { @for $index from 0 through 180 { @@ -75,9 +75,9 @@ } } -// ###################### -// SPACING HELPERS -// ###################### +// ----------------------------------------------------------------------------------------------------- +// @ Spacing helpers +// ----------------------------------------------------------------------------------------------------- @each $breakpoint in map-keys($grid-breakpoints) { @include media-breakpoint-up($breakpoint) { @@ -168,9 +168,9 @@ } } -// ###################### -// BORDER HELPERS -// ###################### +// ----------------------------------------------------------------------------------------------------- +// @ Border helpers +// ----------------------------------------------------------------------------------------------------- $border-style: 1px solid rgba(0, 0, 0, 0.12); .border, @@ -210,9 +210,9 @@ $border-style: 1px solid rgba(0, 0, 0, 0.12); border-bottom: $border-style; } -// ###################### -// BORDER RADIUS HELPERS -// ###################### +// ----------------------------------------------------------------------------------------------------- +// @ Border radius helpers +// ----------------------------------------------------------------------------------------------------- .border-radius-100 { border-radius: 100%; } @@ -233,9 +233,9 @@ $border-style: 1px solid rgba(0, 0, 0, 0.12); border-radius: 16px; } -// ###################### -// CURSOR HELPERS -// ###################### +// ----------------------------------------------------------------------------------------------------- +// @ Cursor helpers +// ----------------------------------------------------------------------------------------------------- .cursor-pointer { cursor: pointer; }