Compare commits

..

6 Commits

Author SHA1 Message Date
Simple_Not
f8e17dfcf2 cors?
Some checks failed
continuous-integration/drone/push Build is failing
2023-06-20 13:10:18 +10:00
Simple_Not
49523af734 cors?
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-20 13:05:45 +10:00
Simple_Not
5a16c641f9 fixxi fixxi
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-20 11:41:14 +10:00
ff1be13793 Position test
All checks were successful
continuous-integration/drone/push Build is passing
2022-12-27 00:04:06 +05:00
89b8b13552 Overflow fix
All checks were successful
continuous-integration/drone/push Build is passing
2022-12-26 23:56:54 +05:00
e8aa6b9a6c 123 2022-12-26 23:56:45 +05:00
5 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --host=0.0.0.0 --disable-host-check --verbose",
"start": "ng serve --live-reload=false --host=0.0.0.0 --disable-host-check --verbose",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"

View File

@@ -1,5 +1,5 @@
<div>
<app-snow></app-snow>
<app-snow style="overflow: hidden;"></app-snow>
<h1>Welcome, traveler.</h1>
<mat-drawer-container class="main-container" [autosize]="true" [hasBackdrop]="false">
<mat-drawer #drawer class="sidenav" mode="side" [mode]="'push'" [opened]="true" >

View File

@@ -1,2 +1,3 @@
export const api_endpoint: string = 'http://api.vdk2ch.ru:5000/';
//export const api_endpoint: string = 'http://api.vdk2ch.ru:5000/';
export const api_endpoint: string = 'https://api.vdk2ch.ru/';
//export const api_endpoint: string = 'http://localhost:7141/';

View File

@@ -8,7 +8,7 @@
.snow {
$total: 30;
position: absolute;
position: fixed;
width: 20px;
height: 20px;
font-size: 50px;

View File

@@ -39,5 +39,4 @@
}
body {
background-color: #eee;
overflow: hidden;
}