mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-06-28 12:25:12 +00:00
Update packages
This commit is contained in:
@ -4,8 +4,7 @@
|
||||
@import "../../assets/scss/variables.scss";
|
||||
|
||||
.tfw-grid-ide-statusbar {
|
||||
display: grid;
|
||||
grid-template-columns: 8fr 1fr;
|
||||
display: flex;
|
||||
background-color: #353535;
|
||||
}
|
||||
|
||||
@ -37,15 +36,21 @@
|
||||
|
||||
.tfw-deploy-btn-group {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
justify-content: flex-end;
|
||||
flex-grow: 1;
|
||||
|
||||
.tfw-deploy-btn {
|
||||
background: $tao-bright-green-200;
|
||||
padding: 0.3em 0.7em 0.7em 1.5em;
|
||||
border-radius: 0;
|
||||
border-bottom-left-radius: 2.2em;
|
||||
border-radius: 0 0 0 2.2em;
|
||||
color: black;
|
||||
|
||||
&:first-child {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
img {
|
||||
padding-right: 0.5em;
|
||||
position: relative;
|
||||
@ -72,9 +77,8 @@
|
||||
|
||||
|
||||
.loader {
|
||||
border: 2px solid $tao-warm-yellow-600;
|
||||
border-radius: 50%;
|
||||
border-top: 2px solid $tao-warm-yellow-200;
|
||||
border: 2px solid;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
animation: spin 2s linear infinite;
|
||||
|
@ -1,10 +1,16 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"paths": {
|
||||
"*": [
|
||||
"types/*"
|
||||
]
|
||||
},
|
||||
"outDir": "../out-tsc/app",
|
||||
"baseUrl": "./",
|
||||
"module": "es2015",
|
||||
"types": []
|
||||
"module": "esNext",
|
||||
"types": [],
|
||||
"resolveJsonModule": true
|
||||
},
|
||||
"exclude": [
|
||||
"test.ts",
|
||||
|
Reference in New Issue
Block a user