Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions 04-Typescript/22-git/dist/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "./features/inventory/dist/invnetory.css";
@import "./features/Cart/dist/style.css"
h1 {
background-color: yellow;
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import "/04-Typescript/22-git/features/Cart/dist/style.css";
dialog{
background-color: red;
width: 200px;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import "/04-Typescript/22-git/features/Cart/dist/style.css";
dialog {
background-color: red;
width: 200px;
Expand Down
Empty file.
Empty file.
Empty file.
Empty file.
13 changes: 13 additions & 0 deletions 04-Typescript/22-git/features/inventory/inventory.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="../dist/style.css">
<link rel="stylesheet" href="./dist/invnetory.css">
</head>
<body>
<h1>Inventory Feature</h1>
</body>
</html>
Empty file.
12 changes: 12 additions & 0 deletions 04-Typescript/22-git/features/login/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="../dist/style.css">
</head>
<body>
<h1>Login </h1>
</body>
</html>
12 changes: 12 additions & 0 deletions 04-Typescript/22-git/features/login/register.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="../dist/style.css">
</head>
<body>
<h1>Register</h1>
</body>
</html>
2 changes: 2 additions & 0 deletions 04-Typescript/22-git/style.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "./features/inventory/dist/invnetory.css";

h1{
background-color: yellow;
}