Skip to content

Commit

Permalink
[Feat][UI] Add the header component in the dashboard layout. (#2218)
Browse files Browse the repository at this point in the history
  • Loading branch information
songjianet authored Jul 19, 2022
1 parent 99d7cea commit b8c9bb2
Show file tree
Hide file tree
Showing 12 changed files with 282 additions and 34 deletions.
3 changes: 3 additions & 0 deletions seatunnel-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
"vfonts": "^0.0.3",
"vue": "^3.2.37",
"vue-i18n": "^9.1.10",
"tailwindcss": "^3.1.6",
"postcss": "^8.4.14",
"autoprefixer": "^10.4.7",
"vue-router": "^4.0.16"
},
"devDependencies": {
Expand Down
174 changes: 174 additions & 0 deletions seatunnel-ui/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,9 @@
* limitations under the License.
*/

* {
outline: 0;
}

html,
body {
width: 100%;
height: 100%;
}

html,
body,
p,
dl,
dd,
dt {
margin: 0;
padding: 0;
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {}
}
}
23 changes: 23 additions & 0 deletions seatunnel-ui/src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind screens;
@tailwind fonts;
@tailwind colors;
Loading

0 comments on commit b8c9bb2

Please sign in to comment.