|
|
@@ -13,23 +13,26 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
- import AlarmExamplePlatform from './AlarmExamplePlatform.vue';
|
|
|
- import AlarmExampleMobile from './AlarmExampleMobile.vue';
|
|
|
- import { ref } from 'vue';
|
|
|
+import AlarmExamplePlatform from './AlarmExamplePlatform.vue';
|
|
|
+import AlarmExampleMobile from './AlarmExampleMobile.vue';
|
|
|
+import { ref } from 'vue';
|
|
|
|
|
|
- const activeName = ref<number>(0);
|
|
|
+const activeName = ref<number>(0);
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
- .alarm-example {
|
|
|
- padding: 18px 0 0 20px;
|
|
|
- font-weight: 500;
|
|
|
- font-size: 14px;
|
|
|
- color: rgba(0, 0, 0, 0.85);
|
|
|
- line-height: 22px;
|
|
|
- }
|
|
|
+.alarm-example {
|
|
|
+ padding: 18px 0 0 20px;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 14px;
|
|
|
+ color: rgba(0, 0, 0, 0.85);
|
|
|
+ line-height: 22px;
|
|
|
+}
|
|
|
|
|
|
- :deep(.el-tabs__nav-scroll) {
|
|
|
- padding: 0 20px 0;
|
|
|
- }
|
|
|
+:deep(.el-tabs__nav-scroll) {
|
|
|
+ padding: 0 20px 0;
|
|
|
+}
|
|
|
+:deep(.el-tabs__nav-wrap::after) {
|
|
|
+ height: 0px;
|
|
|
+}
|
|
|
</style>
|