mirror of
https://github.com/Fabio286/antares.git
synced 2025-02-23 15:07:41 +01:00
27 lines
468 B
SCSS
27 lines
468 B
SCSS
.dbi {
|
|
display: inline-block;
|
|
width: 42px;
|
|
height: 42px;
|
|
background-size: cover;
|
|
|
|
&.dbi-mysql {
|
|
background-image: url("../images/svg/mysql.svg");
|
|
}
|
|
|
|
&.dbi-maria {
|
|
background-image: url("../images/svg/mariadb.svg");
|
|
}
|
|
|
|
&.dbi-mssql {
|
|
background-image: url("../images/svg/mssql.svg");
|
|
}
|
|
|
|
&.dbi-pg {
|
|
background-image: url("../images/svg/pg.svg");
|
|
}
|
|
|
|
&.dbi-oracledb {
|
|
background-image: url("../images/svg/oracledb.svg");
|
|
}
|
|
}
|