vuetify
Version:
Vue Material Component Framework
40 lines • 1.17 kB
CSS
@layer vuetify-components {
.v-footer {
align-items: center;
display: flex;
flex: 1 1 auto;
padding: 8px 16px;
position: relative;
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
transition-property: height, width, transform, max-width, left, right, top, bottom;
}
.v-footer {
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
border-style: solid;
border-width: 0;
}
.v-footer--border {
border-width: thin;
box-shadow: none;
}
.v-footer {
box-shadow: 0px 0px 0px 0px rgba(var(--v-shadow-color), var(--v-shadow-key-opacity, 0.3)), 0px 0px 0px 0px rgba(var(--v-shadow-color), var(--v-shadow-ambient-opacity, 0.15));
--v-elevation-overlay: color-mix(in srgb, var(--v-elevation-overlay-color) 0%, transparent);
}
.v-footer--absolute {
position: absolute;
}
.v-footer--fixed {
position: fixed;
}
.v-footer {
border-radius: 0;
}
.v-footer {
background: rgb(var(--v-theme-surface));
color: color-mix(in srgb, rgb(var(--v-theme-on-surface)) calc(var(--v-high-emphasis-opacity) * 100%), transparent);
}
.v-footer--rounded {
border-radius: 4px;
}
}