godo: use position fixed for marks menu

This commit is contained in:
Thomas Jund 2021-11-26 12:55:40 +01:00
parent a51d3d0bc7
commit 63149ad313
2 changed files with 1 additions and 5 deletions

View File

@ -45,7 +45,7 @@
/* Marks menu */
.godo-marks-menu {
position: absolute;
position: fixed;
top: 0;
left: 0;
transition: all 100ms 500ms ease;

View File

@ -98,8 +98,6 @@ const linkSchema = {
}
}
const basic_schema = new Schema(basicSchema);
const headers_schema = new Schema({
@ -112,6 +110,4 @@ const full_schema = new Schema({
marks: basic_schema.spec.marks.append(linkSchema.marks)
})
console.log(full_schema);
export { basic_schema, headers_schema, full_schema };