mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-06-28 23:35:12 +00:00
Grid logo and title is centered using grid layout
This commit is contained in:
BIN
src/assets/images/favicon.ico
Normal file → Executable file
BIN
src/assets/images/favicon.ico
Normal file → Executable file
Binary file not shown.
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 1.6 KiB |
44
src/assets/scss/_grid.scss
Normal file
44
src/assets/scss/_grid.scss
Normal file
@ -0,0 +1,44 @@
|
||||
.tao-grid-center-center {
|
||||
justify-self: center;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.tao-grid-center-right {
|
||||
justify-self: right;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.tao-grid-center-left {
|
||||
justify-self: left;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.tao-grid-start-center {
|
||||
justify-self: center;
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.tao-grid-end-center {
|
||||
justify-self: center;
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.tao-grid-top-right {
|
||||
justify-self: right;
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.tao-grid-top-left {
|
||||
justify-self: left;
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.tao-grid-bottom-left {
|
||||
justify-self: left;
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.tao-grid-bottom-right {
|
||||
justify-self: right;
|
||||
align-self: end;
|
||||
}
|
@ -1,6 +1,8 @@
|
||||
|
||||
|
||||
@import 'variables';
|
||||
@import
|
||||
'variables',
|
||||
'grid';
|
||||
|
||||
@import
|
||||
'shared/buttons';
|
||||
|
@ -155,6 +155,6 @@ $font-size-h3: floor(($font-size-base * 1.3));
|
||||
$font-size-h4: floor(($font-size-base * 1.2));
|
||||
$font-size-h5: floor(($font-size-base * 1.1));
|
||||
|
||||
// Custom sizes
|
||||
|
||||
|
||||
$tao-navbar-height: 67px;
|
||||
|
Reference in New Issue
Block a user