forked from sparrow-js/sparrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
76c8c74
commit 33e9422
Showing
5 changed files
with
160 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
packages/sparrow-client/src/components/CssPanel/BorderRadius/index.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<template> | ||
<div> | ||
<el-row :gutter="10"> | ||
<el-col :span="12"> | ||
<el-input-number controls-position="right" size="mini"></el-input-number> | ||
</el-col> | ||
<el-col :span="12"> | ||
<el-input-number controls-position="right" size="mini"></el-input-number> | ||
</el-col> | ||
<el-col :span="12"> | ||
<el-input-number controls-position="right" size="mini"></el-input-number> | ||
</el-col> | ||
<el-col :span="12"> | ||
<el-input-number controls-position="right" size="mini"></el-input-number> | ||
</el-col> | ||
</el-row> | ||
</div> | ||
</template> | ||
<script> | ||
export default {}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,38 @@ | ||
<template> | ||
<div> | ||
<div class="css-panel"> | ||
<layout /> | ||
<div> | ||
<font /> | ||
</div> | ||
<div> | ||
<location /> | ||
</div> | ||
<div> | ||
<background /> | ||
</div> | ||
<div> | ||
<border /> | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
import Layout from './Layout'; | ||
import Font from './Font'; | ||
import Location from './Location'; | ||
import Background from './Background'; | ||
import Border from './Border'; | ||
export default { | ||
components: { | ||
Layout, | ||
Font, | ||
Location | ||
Location, | ||
Background, | ||
Border | ||
} | ||
}; | ||
</script> | ||
<style lang="scss" scoped></style> | ||
<style lang="scss" scoped> | ||
.css-panel{ | ||
width: 300px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters