move global css
parent
05c4e09ace
commit
c0963994d2
|
|
@ -1,4 +0,0 @@
|
|||
body{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<link rel="stylesheet" href="assets/css/global.css">
|
||||
<link rel="stylesheet" href="src/assets/global.css">
|
||||
<meta charset="UTF-8">
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Vite App</title>
|
||||
<title>Vue Test Projekt</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,32 @@
|
|||
body {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.input-mask {
|
||||
background-color: aquamarine;
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.list {
|
||||
padding: 1em;
|
||||
background-color: cadetblue;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th, td {
|
||||
border: 1px solid #ddd;
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
|
|
@ -33,9 +33,5 @@ const grade_form_input = ref({
|
|||
</script>
|
||||
|
||||
<style scoped>
|
||||
.input-mask {
|
||||
background-color: aquamarine;
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
</script>
|
||||
|
||||
<style lang="css">
|
||||
<<<<<<< HEAD
|
||||
.list {
|
||||
padding: 1em;
|
||||
background-color: cadetblue;
|
||||
|
|
@ -26,14 +27,7 @@
|
|||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
=======
|
||||
>>>>>>> 7fee405... move global css
|
||||
|
||||
th, td {
|
||||
border: 1px solid #ddd;
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in New Issue