CodeIgniter 3 app for dinbestehjelper.no. Excludes vendor/, local backup folders (new/, archive/, archived/) and DB dumps (*.sql) via .gitignore. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01P16ttGUge8zj91dm6WrmEb
26 lines
422 B
SCSS
26 lines
422 B
SCSS
///
|
|
/// Phantom by Pixelarity
|
|
/// pixelarity.com | hello@pixelarity.com
|
|
/// License: pixelarity.com/license
|
|
///
|
|
|
|
/* Wrapper */
|
|
|
|
#wrapper {
|
|
> * {
|
|
> .inner {
|
|
$gutter: _size(gutter);
|
|
|
|
width: 100%;
|
|
max-width: _size(inner);
|
|
margin: 0 auto;
|
|
padding: 0 $gutter;
|
|
|
|
@include breakpoint('<=small') {
|
|
$gutter: _size(gutter) * 0.5;
|
|
|
|
padding: 0 $gutter;
|
|
}
|
|
}
|
|
}
|
|
} |