mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-06 22:08:51 +00:00
20 lines
400 B
SCSS
20 lines
400 B
SCSS
///
|
|
/// @filename _extends.scss
|
|
/// @project SOGo
|
|
/// @version 3.alpha
|
|
/// @module bottombar
|
|
///
|
|
/// botttombar extends
|
|
///
|
|
|
|
.sg-bottombar {
|
|
@extends md-toolbar;
|
|
|
|
background-color:#212121; // fixme : use a variable
|
|
position: fixed;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
// todo : implement a setting map and a getter for every z-index
|
|
// NiceToHave : implement init map and function
|
|
z-index: 100;
|
|
} |