File tree Expand file tree Collapse file tree 8 files changed +44
-31
lines changed Expand file tree Collapse file tree 8 files changed +44
-31
lines changed Original file line number Diff line number Diff line change 5
5
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1, shrink-to-fit=no ">
7
7
< title > CoreUI - Open Source Bootstrap Admin Template</ title >
8
-
9
- <!-- Icons -->
10
- < link href ="static/css/font-awesome.min.css " rel ="stylesheet ">
11
- < link href ="static/css/simple-line-icons.css " rel ="stylesheet ">
12
-
13
- <!-- Main styles for this application -->
14
- < link href ="static/css/style.css " rel ="stylesheet ">
15
8
</ head >
16
9
17
10
<!-- BODY options, add following classes to body to change options
31
24
2. '.aside-menu-hidden' - Hidden Aside Menu
32
25
3. '.aside-menu-off-canvas' - Off Canvas Aside Menu
33
26
27
+ // Breadcrumb options
28
+ 1. '.breadcrumb-fixed' - Fixed Breadcrumb
29
+
34
30
// Footer options
35
- 1. '.footer-fixed' - Fixed footer
31
+ 1. '.footer-fixed' - Fixed footer
36
32
37
33
-->
38
34
Original file line number Diff line number Diff line change @@ -7,3 +7,16 @@ export default {
7
7
name: ' app'
8
8
}
9
9
</script >
10
+
11
+ <style >
12
+ // Import Font Awesome Icons Set
13
+ $fa-font-path : "~ font-awesome /fonts/";
14
+ @import " ~font-awesome/css/font-awesome.min.css" ;
15
+ // Import Simple Line Icons Set
16
+ $simple-line-font-path : "~ simple-line-icons /fonts/";
17
+ @import " ~simple-line-icons/css/simple-line-icons.css" ;
18
+ </style >
19
+ <style lang="scss">
20
+ // Import Main styles for this application
21
+ @import " ./scss/style" ;
22
+ </style >
Original file line number Diff line number Diff line change 1
1
// The Vue build version to load with the `import` command
2
2
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
3
3
import Vue from 'vue'
4
+ import BootstrapVue from 'bootstrap-vue'
4
5
import App from './App'
5
6
import router from './router'
6
7
8
+ Vue . use ( BootstrapVue )
9
+
7
10
/* eslint-disable no-new */
8
11
new Vue ( {
9
12
el : '#app' ,
10
13
router,
11
14
template : '<App/>' ,
12
- components : { App }
15
+ components : {
16
+ App
17
+ }
13
18
} )
Original file line number Diff line number Diff line change 5
5
<div class =" col-md-8" >
6
6
<div class =" card-group mb-0" >
7
7
<div class =" card p-4" >
8
- <div class =" card-block " >
8
+ <div class =" card-body " >
9
9
<h1 >Login</h1 >
10
10
<p class =" text-muted" >Sign In to your account</p >
11
11
<div class =" input-group mb-3" >
26
26
</div >
27
27
</div >
28
28
</div >
29
- <div class =" card card-inverse card -primary py-5 d-md-down-none" style =" width :44% " >
30
- <div class =" card-block text-center" >
29
+ <div class =" card text-white bg -primary py-5 d-md-down-none" style =" width :44% " >
30
+ <div class =" card-body text-center" >
31
31
<div >
32
32
<h2 >Sign up</h2 >
33
33
<p >Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p >
Original file line number Diff line number Diff line change 4
4
<div class =" row justify-content-center" >
5
5
<div class =" col-md-6" >
6
6
<div class =" card mx-4" >
7
- <div class =" card-block p-4" >
7
+ <div class =" card-body p-4" >
8
8
<h1 >Register</h1 >
9
9
<p class =" text-muted" >Create your account</p >
10
10
<div class =" input-group mb-3" >
Original file line number Diff line number Diff line change 5
5
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1, shrink-to-fit=no ">
7
7
< title > CoreUI - Open Source Bootstrap Admin Template</ title >
8
-
9
- <!-- Icons -->
10
- < link href ="static/css/font-awesome.min.css " rel ="stylesheet ">
11
- < link href ="static/css/simple-line-icons.css " rel ="stylesheet ">
12
-
13
- <!-- Main styles for this application -->
14
- < link href ="static/css/style.css " rel ="stylesheet ">
15
8
</ head >
16
9
17
10
<!-- BODY options, add following classes to body to change options
31
24
2. '.aside-menu-hidden' - Hidden Aside Menu
32
25
3. '.aside-menu-off-canvas' - Off Canvas Aside Menu
33
26
27
+ // Breadcrumb options
28
+ 1. '.breadcrumb-fixed' - Fixed Breadcrumb
29
+
34
30
// Footer options
35
- 1. '.footer-fixed' - Fixed footer
31
+ 1. '.footer-fixed' - Fixed footer
36
32
37
33
-->
38
34
Original file line number Diff line number Diff line change @@ -7,14 +7,17 @@ export default {
7
7
name: ' app'
8
8
}
9
9
</script >
10
- <!--
10
+
11
11
<style >
12
- #app {
13
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
14
- -webkit-font-smoothing: antialiased;
15
- -moz-osx-font-smoothing: grayscale;
16
- text-align: center;
17
- color: #2c3e50;
18
- margin-top: 60px;
19
- }
20
- </style> -->
12
+ // Import Font Awesome Icons Set
13
+ $fa-font-path : "~ font-awesome /fonts/";
14
+ @import " ~font-awesome/css/font-awesome.min.css" ;
15
+ // Import Simple Line Icons Set
16
+ $simple-line-font-path : "~ simple-line-icons /fonts/";
17
+ @import " ~simple-line-icons/css/simple-line-icons.css" ;
18
+ </style >
19
+ <style lang="scss">
20
+ // Import Main styles for this application
21
+ @import " ./scss/style" ;
22
+ </style >
23
+
You can’t perform that action at this time.
0 commit comments